Loading...
Searching...
No Matches
Go to the documentation of this file.
9static void spit(
char *s)
11 if (buffer_puts(&
bo,s) == -1) _exit(111);
14int main(
int argc,
char **argv)
22 if (!
name) _exit(100);
24 if (!
value) _exit(100);
30 while ((ch = *
value++)) {
33 octal[2] =
'0' + (ch & 7); ch >>= 3;
34 octal[1] =
'0' + (ch & 7); ch >>= 3;
35 octal[0] =
'0' + (ch & 7);
40 if (buffer_flush(&
bo) == -1) _exit(111);