search for: is_defined_config

Displaying 1 result from an estimated 1 matches for "is_defined_config".

2011 Dec 04
0
[GIT PULL] klibc minor fixes
...red length. * Usually the first growth is plenty. */ -void grow_config(int len) +static void grow_config(int len) { while (len_config + len > size_config) { if (size_config == 0) @@ -159,7 +158,7 @@ void grow_config(int len) /* * Lookup a value in the configuration string. */ -int is_defined_config(const char * name, int len) +static int is_defined_config(const char *name, int len) { const char * pconfig; const char * plast = str_config + len_config - len; @@ -175,7 +174,7 @@ int is_defined_config(const char * name, int len) /* * Add a new value to the configuration string. */ -void...