fixed subtle error

This commit is contained in:
john stone 2013-11-24 05:58:02 +01:00
parent eb322b6091
commit b9ddaa780b
2 changed files with 9 additions and 5 deletions

View File

@ -5,6 +5,6 @@ struct RouterOp
};
%%
/files, 1
/date , 2
/static , 4
/upload , 5
/date, 2
/static, 4
/upload, 5

View File

@ -17,8 +17,12 @@ int main(int argc, char *argv[])
{
Foohash fh;
RouterOp *blub;
blub = fh.in_word_set("/static" , sizeof("/static"));
cout << "aaa" << blub->txt << endl;
blub = fh.in_word_set("/static" , sizeof("/static")-1);
if(blub)
cout << "found! : " << blub->txt << " ,op:" << blub->op << endl;
else
cout << "not found stuff!" << endl;
if(argc) argv++;
}
// http://www.ibm.com/developerworks/linux/library/l-gperf/index.html#toggle