Skip to content
Snippets Groups Projects
Commit 8069f5ce authored by rswindell's avatar rswindell
Browse files

Renamed strListAlloc() to strListInit().

parent 7a737f01
No related branches found
No related tags found
No related merge requests found
......@@ -146,7 +146,7 @@ str_list_t iniGetStringList(FILE* fp, const char* section, const char* key
SAFECOPY(list,value);
if((lp=strListAlloc())==NULL)
if((lp=strListInit())==NULL)
return(NULL);
token=strtok(list,sep);
......@@ -192,7 +192,7 @@ str_list_t iniGetSectionList(FILE* fp, const char* prefix)
ulong items=0;
str_list_t lp;
if((lp=strListAlloc())==NULL)
if((lp=strListInit())==NULL)
return(NULL);
if(fp==NULL)
......@@ -230,7 +230,7 @@ str_list_t iniGetKeyList(FILE* fp, const char* section)
ulong items=0;
str_list_t lp;
if((lp=strListAlloc())==NULL)
if((lp=strListInit())==NULL)
return(NULL);
if(fp==NULL)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment