/[svn]/linuxsampler/trunk/src/network/lscp.l
ViewVC logotype

Diff of /linuxsampler/trunk/src/network/lscp.l

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 170 by senkov, Sat Jul 3 20:08:07 2004 UTC revision 210 by schoenebeck, Sat Jul 24 12:33:49 2004 UTC
# Line 20  Line 20 
20   *   MA  02111-1307  USA                                                   *   *   MA  02111-1307  USA                                                   *
21   ***************************************************************************/   ***************************************************************************/
22    
23    /* Note: don't forget to run 'make parser' after you changed this file, */
24    /*       otherwise the parser will not be regenerated!                  */
25    
26  %{  %{
27    
28  #include "lscpparser.h"  #include "lscpparser.h"
# Line 87  BYTES Line 90  BYTES
90  PERCENTAGE                              { return PERCENTAGE; }  PERCENTAGE                              { return PERCENTAGE; }
91  RESET                                   { return RESET; }  RESET                                   { return RESET; }
92  MISCELLANEOUS                           { return MISCELLANEOUS; }  MISCELLANEOUS                           { return MISCELLANEOUS; }
93    ECHO                                    { return ECHO; }
94  QUIT                                    { return QUIT; }  QUIT                                    { return QUIT; }
95  0|([1-9]{DIGIT}*)                       { yylval->Number = atoi(yytext); return NUMBER; }  0|([1-9]{DIGIT}*)                       { yylval->Number = atoi(yytext); return NUMBER; }
96  "\'"                                    { yylval->String = "";  BEGIN(INSTRING); }  "\'"                                    { yylval->String = "";  BEGIN(INSTRING); }

Legend:
Removed from v.170  
changed lines
  Added in v.210

  ViewVC Help
Powered by ViewVC