[BACK]Return to rpc_scan.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / rpcgen

Diff for /src/usr.bin/rpcgen/rpc_scan.c between version 1.7 and 1.8

version 1.7, 2001/12/05 09:50:31 version 1.8, 2002/02/16 21:27:51
Line 47 
Line 47 
 #include "rpc_parse.h"  #include "rpc_parse.h"
 #include "rpc_util.h"  #include "rpc_util.h"
   
 static unget_token __P((token *tokp));  static unget_token(token *tokp);
 static findstrconst __P((char **, char **));  static findstrconst(char **, char **);
 static findchrconst __P((char **, char **));  static findchrconst(char **, char **);
 static findconst __P((char **, char **));  static findconst(char **, char **);
 static findkind __P((char **, token *));  static findkind(char **, token *);
 static cppline __P((char *));  static cppline(char *);
 static directive __P((char *));  static directive(char *);
 static printdirective __P((char *));  static printdirective(char *);
 static docppline __P((char *, int *, char **));  static docppline(char *, int *, char **);
   
 #define startcomment(where) (where[0] == '/' && where[1] == '*')  #define startcomment(where) (where[0] == '/' && where[1] == '*')
 #define endcomment(where) (where[-1] == '*' && where[0] == '/')  #define endcomment(where) (where[-1] == '*' && where[0] == '/')

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8