03.08.2015, 12:31
Wassup community,
today i have a little bit of a bad problem, so lets say what it is:
But, i am returning the value via the return 1;
Here is the snippet of the code:
today i have a little bit of a bad problem, so lets say what it is:
Код:
warning 209: function "fdeleteline" should return a value
Here is the snippet of the code:
Код:
stock fdeleteline(filename[], line[]) { if(fexist(filename)){ new temp[256]; new File:fhandle = fopen(filename,io_read); fread(fhandle,temp,sizeof(temp),false); if(strfind(temp,line,true)==-1){return 0;} else{ fclose(fhandle); fremove(filename); for(new i=0;i<strlen(temp);i++){ new templine[256]; strmid(templine,temp,i,i+strlen(line)); if(strcmp(templine,line,true)){ strdel(temp,i,i+strlen(line)); fcreate(filename); fhandle = fopen(filename,io_write); fwrite(fhandle,temp); fclose(fhandle); return 1; } } } } }