Lines Matching defs:void

48 extern int	yylex(void);
226 static void add_line_to_comment(void);
227 static void add_qstring_to_str(void);
228 static void add_str_to_element_list(int, char *);
229 static void copy_strlist_to_str(char *, struct strlist_st *);
230 static void end_ansi_string(void);
231 static void free_strlist(struct strlist_st *);
232 void handle_newline(void);
233 static void initialize_globals(void);
234 static void output_comment(FILE *, struct strlist_st *);
235 static void output_msgid(FILE *, struct strlist_st *, int);
236 static void output_textdomain(FILE *, struct element_st *);
237 static void print_help(void);
238 static void read_exclude_file(void);
239 static void trim_line(char *);
240 static void write_all_files(void);
241 static void write_one_file(struct domain_st *);
243 static void lstrcat(char *, const char *);
248 static struct domain_st *new_domain(void);
249 static struct strlist_st *new_strlist(void);
250 static struct element_st *new_element(void);
251 static struct exclude_st *new_exclude(void);
315 (void) fprintf(stderr, USAGE);
326 (void) fprintf(stderr,
333 (void) fprintf(stderr,
339 (void) fprintf(stderr, USAGE);
345 (void) fprintf(stderr, USAGE);
366 (void) printf("optind=%d\n", optind);
370 (void) printf(" %d, <%s>\n", i, argv[i]);
377 (void) fprintf(stderr,
381 (void) strcpy(curr_file, gargv[optind]);
388 (void) yylex();
408 static void
409 print_help(void)
411 (void) fprintf(stderr, "\n");
412 (void) fprintf(stderr,
414 (void) fprintf(stderr,
416 (void) fprintf(stderr,
418 (void) fprintf(stderr,
420 (void) fprintf(stderr,
422 (void) fprintf(stderr,
424 (void) fprintf(stderr,
426 (void) fprintf(stderr,
428 (void) fprintf(stderr,
430 (void) fprintf(stderr,
432 (void) fprintf(stderr,
434 (void) fprintf(stderr,
447 static void
484 (void) strcpy(curr_file, q);
493 void
494 handle_macro_line(void)
497 (void) printf("Macro line=<%s>\n", yytext);
515 void
516 handle_cplus_comment_line(void)
540 void
541 handle_open_comment(void)
565 void
566 handle_close_comment(void)
582 void
583 handle_gettext(void)
614 void
615 handle_dgettext(void)
646 void
647 handle_dcgettext(void)
679 void
680 handle_textdomain(void)
697 void
698 handle_open_paren(void)
719 void
720 handle_close_paren(void)
760 void
761 handle_esc_newline(void)
783 void
784 handle_quote(void)
831 void
832 handle_spaces(void)
845 static void
866 void
867 handle_comma(void)
901 void
902 handle_character(void)
921 void
922 handle_newline(void)
948 static void
949 end_ansi_string(void)
965 static void
966 initialize_globals(void)
979 static void
1050 static void
1051 read_exclude_file(void)
1060 (void) fprintf(stderr, "ERROR, can't open exclude file: %s\n",
1223 /* (void) fprintf(stderr, "octal=%d\n", value); */
1252 (void) fprintf(stderr, "hex=%d\n", value);
1339 static void
1340 add_line_to_comment(void)
1364 static void
1365 add_qstring_to_str(void)
1412 (void) fprintf(stderr,
1444 static void
1526 static void
1671 static void
1672 write_all_files(void)
1695 static void
1835 (void) fclose(fp);
1886 static void
1911 (void) strcpy(dname, head->dname);
1913 (void) strcpy(dname, default_domain);
1921 (void) strcat(fname, pathname);
1922 (void) strcat(fname, "/");
1924 (void) strcat(fname, dname);
1925 (void) strcat(fname, ".po");
1956 (void) fprintf(stderr,
1961 (void) fprintf(fp, "domain \"%s\"\n", dname);
2015 (void) fprintf(fp, "# File:%s, line:%d\n",
2033 (void) fclose(fp);
2040 static void
2050 (void) fprintf(fp, "# File:%s, line:%d, textdomain(\"%s\");\n",
2057 static void
2067 (void) fprintf(fp, "# %s\n", p->str);
2075 static void
2089 (void) fprintf(fp, "# ");
2091 (void) fprintf(fp, "msgid \"%s\"\n", p->str);
2095 (void) fprintf(fp, "# ");
2097 (void) fprintf(fp, " \"%s\"\n", q->str);
2107 (void) fprintf(fp, "# ");
2116 (void) fprintf(fp,
2121 (void) fprintf(fp,
2128 (void) fprintf(fp, "msgstr \"%s%s\"\n",
2132 (void) fprintf(fp, "msgstr \"%s\"\n", p->str);
2138 (void) fprintf(fp, "# ");
2140 (void) fprintf(fp, " \"%s\"\n", q->str);
2148 (void) fprintf(fp, " \"%s\"\n", suffix);
2151 (void) fprintf(fp, "msgstr\n");
2159 new_element(void)
2180 new_domain(void)
2199 new_strlist(void)
2214 new_exclude(void)
2228 static void
2243 (void) fprintf(stderr,
2249 (void) fprintf(stderr,
2264 void
2318 void
2338 void