/[anubis]/anubis/src/rcfile.y
ViewVC logotype

Diff of /anubis/src/rcfile.y

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

revision 1.10 by gray, Thu Mar 6 18:48:35 2003 UTC revision 1.11 by polak, Fri May 2 20:33:20 2003 UTC
# Line 34  Line 34 
34  #include "extern.h"  #include "extern.h"
35  #include "rcfile.h"  #include "rcfile.h"
36    
37  static RC_SECTION *rc_section_create(char *name, RC_STMT *stmt);  static RC_SECTION *rc_section_create(char *, RC_STMT *);
38  static void rc_section_destroy(RC_SECTION *s);  static void rc_section_destroy(RC_SECTION *);
39  static void rc_section_print(RC_SECTION *sect);  static void rc_section_print(RC_SECTION *);
40    static void rc_asgn_destroy(RC_ASGN *);
41  static void rc_asgn_destroy(RC_ASGN *asgn);  static void rc_bool_destroy(RC_BOOL *);
42    static void rc_level_print(int, char *);
43  static void rc_bool_destroy(RC_BOOL *bool);  static RC_NODE *rc_node_create(enum rc_node_type);
44    static void rc_node_destroy(RC_NODE *);
45  static void rc_level_print(int level, char *str);  static void rc_node_print(RC_NODE *);
46    static void rc_rule_destroy(RC_RULE *);
47  static RC_NODE *rc_node_create(enum rc_node_type t);  static void rc_cond_destroy(RC_COND *);
48  static void rc_node_destroy(RC_NODE *node);  static RC_STMT *rc_stmt_create(enum rc_stmt_type);
49  static void rc_node_print(RC_NODE *node);  static void rc_stmt_destroy(RC_STMT *);
50    static void rc_stmt_list_destroy(RC_STMT *);
51  static void rc_rule_destroy(RC_RULE *rule);  static void rc_stmt_print(RC_STMT *, int);
52    static int reg_option_add(int *, char *);
 static void rc_cond_destroy(RC_COND *cond);  
   
 static RC_STMT *rc_stmt_create(enum rc_stmt_type type);  
 static void rc_stmt_destroy(RC_STMT *stmt);  
 static void rc_stmt_list_destroy(RC_STMT *stmt);  
 static void rc_stmt_print(RC_STMT *stmt, int level);  
 static int reg_option_add(int *flag, char *opt);  
53    
54  static RC_SECTION *rc_section;  static RC_SECTION *rc_section;
   
55  static int debug_level;  static int debug_level;
56    
57  %}  %}
# Line 1100  rc_run_section_list(int method, RC_SECTI Line 1092  rc_run_section_list(int method, RC_SECTI
1092                  rc_run_section(method, sec, secdef, NULL, NULL);                  rc_run_section(method, sec, secdef, NULL, NULL);
1093  }  }
1094    
   

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26