Lines Matching refs:String
15 String *matchre; /* address match */
16 String *repl1; /* first replacement String */
17 String *repl2; /* second replacement String */
27 static String *substitute(String *, Resub *, message *);
28 static rule *findrule(String *, int);
35 extern String *
36 rule_parse(String *line, char *system, int *backl) in rule_parse()
38 String *token; in rule_parse()
39 String *expanded; in rule_parse()
70 getrule(String *line, String *type, char *system) in getrule()
73 String *re; in getrule()
130 String *line; in getrules()
131 String *type; in getrules()
132 String *file; in getrules()
134 file = abspath("rewrite", UPASLIB, (String *)0); in getrules()
155 findrule(String *addrp, int authorized) in findrule()
190 String *lower; /* lower case version of destination */ in rewrite()
218 static String *
219 substitute(String *source, Resub *subexp, message *mp) in substitute()
224 String *stp; in substitute()