Tools
porter.lst
Associated article: Convincing Pascal to Read Non-Pascal Files
Tags: Tools Open Source
_Structured Programming Column_
by Kent Porter
Listing One
/* MKTABLE.C: Makes a data table with header record */
#include <stdio.h>
#include <string.h>
#define SIG 19364 /* application file signature */
typedef struct {
char fname [20];
int ftype, flen;
} DESCR;
...


