Changeset 243d027 for src/tok.l/tok.l


Ignore:
Timestamp:
01/18/13 18:46:38 (11 years ago)
Author:
Tomasz Obrebski <to@…>
Branches:
master
Children:
e0cd003
Parents:
18e1952
git-author:
Tomasz Obrebski <to@…> (01/18/13 18:46:38)
git-committer:
Tomasz Obrebski <to@…> (01/18/13 18:46:38)
Message:

tok accepts options and prints help message now

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/tok.l/tok.l

    r5f4d9c3 r243d027  
    5656%% 
    5757 
    58 /*int main(int argc, char** argv) 
     58int main(int argc, char** argv) 
    5959{ 
    60   if (cmdline_parser(argc, argv, &args) != 0) return 1; 
     60  if (cmdline_parser(argc, argv, &args) != 0) exit(1); 
    6161  setlocale(LC_CTYPE,""); 
     62 
    6263  setlocale(LC_COLLATE,""); 
    6364  yylex(); 
    6465  return 0; 
    65 }*/ 
     66} 
    6667 
    6768int yywrap() 
Note: See TracChangeset for help on using the changeset viewer.