ref: 44ce0097b612a1fefd754065bdf8d9d2e5ef60c8
dir: /man/10/parsecmd/
.TH PARSECMD 10.2 .SH NAME parsecmd \- parse device commands .SH SYNOPSIS .ta \w'\fLCmdbuf* 'u .B Cmdbuf* parsecmd(char *a, int n) .SH DESCRIPTION .I Parsecmd is an interface to .I tokenize (see .IR getfields (10.2)), that safely parses a command, with blank-separated fields, as might be written to a device's .B ctl file. The buffer .I a and count .I n can be those passed to the driver's .I write function. .I Parsecmd converts the byte array (which might not be null-terminated) to a null-terminated string, trimming any trailing new line, before invoking .I tokenize to break the string into arguments, interpreting blank and tab as field separators when they are not quoted (in the style of .IR sh (1)). It returns a pointer to a dynamically-allocated .B Cmdbuf structure, which holds a copy of the string as modified by .IR parsefields , and the resulting fields; it is defined as follows: .IP .EX .ta 6n +\w'char* 'u typedef struct Cmdbuf { char buf[128]; char *f[16]; int nf; } Cmdbuf; .EE .PP The array .B f holds the field pointers; .B nf gives the number of fields. .B Cmdbuf is allocated by .I smalloc (see .IR malloc (10.2)), and the caller is responsible for freeing it using .IR free . .SH SOURCE .B /os/port/parse.c .br .B /emu/port/dev.c