"'"
Status: Beta
Brought to you by:
raghav33
email: hardcoded83@gmail.com
Hello , i am using your program :)
I find a bug and correct it,
The bug is, in my abnf i use this "'" , and your
program convert it to this ''', so bison dont like it
the program should convert it to this '\''
so in charval:
i wrote this :
for(i=0;i<strlen($2);i++){
STCHAR='\'';
if($2[i] == '\'')
STCHAR='\\';
STCHAR=$2[i];
STCHAR='\'';
STCHAR=' ';}
ENDCHAR=0;
}