typedef
struct Cmdbuf
{
char buf[128];
char *f[16];
int nf;
} Cmdbuf;
The array f holds the field pointers; nf gives the number of fields. Cmdbuf is allocated by smalloc (see malloc(10.2)), and the caller is responsible for freeing it using free.
| PARSECMD(10.2) | Rev: Mon Apr 04 15:32:57 GMT 2005 |