axle OS
x86_32 UNIX-like hobby OS
iberty.h
1 #include <stdlib.h>
2 
3 #ifndef NULL
4 #define NULL 0
5 #endif
6 
7 #ifndef EOS
8 #define EOS '\0'
9 #endif
10 
11 #define INITIAL_MAXARGC 8
12 
13 void freeargv (char **vector);
14 char **buildargv (const char *input, int *ac);