Searched refs:accu (Results 1 – 1 of 1) sorted by relevance
27 static char accu[1024] = { 0 };28 strcat(accu, s);29 return accu;53 char * accu; in str_accumulate() local60 if (accu == NULL) { in str_accumulate()61 accu = (char *)malloc(1024); in str_accumulate()62 if (accu == NULL) return NULL; in str_accumulate()63 accu[0] = 0; in str_accumulate()69 strcat(accu, s); in str_accumulate()70 return accu; in str_accumulate()[all …]
Completed in 7 milliseconds