Lines Matching defs:string
42 #include <string.h>
46 addsev(int severity, const char *string)
65 if (string == NULL) /* Removing non-existing severity */
81 if (string == NULL) {
82 if (__pfmt_sev_tab[i].string)
83 libc_free(__pfmt_sev_tab[i].string);
85 __pfmt_sev_tab[i].string = NULL;
89 new = libc_realloc(__pfmt_sev_tab[i].string, strlen(string) + 1);
95 __pfmt_sev_tab[i].string = new;
96 (void) strcpy(__pfmt_sev_tab[i].string, string);