Menu

#1 "'"

open
nobody
None
5
2006-03-20
2006-03-20
Anonymous
No

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;
}

Discussion


Log in to post a comment.