1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-02-15 04:32:24 +00:00

localized/util: Change to ANSI function definitions

This commit is contained in:
Peter Howkins 2018-06-28 04:25:29 +01:00
parent 9f91dca0c5
commit aad31c8e27

View file

@ -118,9 +118,7 @@ void fatal ();
void get_option (); void get_option ();
void main (argc, argv) void main (int argc, char *argv [])
int argc;
char *argv [];
{ {
int c; int c;
@ -182,7 +180,7 @@ char *argv [];
* If the pattern "%|nls-???-###|" is found in the template file, replace it * If the pattern "%|nls-???-###|" is found in the template file, replace it
* by big_buff. * by big_buff.
*/ */
void process_message () void process_message (void)
{ {
int c; int c;
int m = 0; int m = 0;
@ -220,7 +218,7 @@ void process_message ()
/* /*
* Get a character from template. Incriment line count if new line is found. * Get a character from template. Incriment line count if new line is found.
*/ */
int get_char () int get_char (void)
{ {
int c; int c;
@ -233,7 +231,7 @@ int get_char ()
/* /*
* Open message files * Open message files
*/ */
void cat_open () void cat_open (void)
{ {
char line[255]; char line[255];
@ -272,9 +270,9 @@ void cat_open ()
/* /*
* Search a message by specified number. If found, returns 1 and the message * Search a message by specified number. If found, returns 1 and the message
* will be set in big_buff. If not found, returns 0. * will be set in big_buff. If not found, returns 0.
* msg, message number to be searched
*/ */
int find_message (msg) int find_message (int msg)
int msg; /* message number to be searched */
{ {
int ret = 0; int ret = 0;
@ -289,10 +287,11 @@ int msg; /* message number to be searched */
* Search a line starts with the message number in specified file. If found, * Search a line starts with the message number in specified file. If found,
* the line will be passed to get_message() and returns 1. * the line will be passed to get_message() and returns 1.
* If not found, returns 0. * If not found, returns 0.
*
* msg, message number to be searched
* file, 0: Primary message file, 1: Default message file
*/ */
int find_msg_in_file (msg, file) int find_msg_in_file (int msg, int file)
int msg; /* message number to be searched */
int file; /* 0: Primary message file, 1: Default message file */
{ {
big_buff = catgets(catfile[file],1,msg,"MSG_NOT_FOUND"); big_buff = catgets(catfile[file],1,msg,"MSG_NOT_FOUND");
if ( strcmp(big_buff,"MSG_NOT_FOUND") ) if ( strcmp(big_buff,"MSG_NOT_FOUND") )
@ -334,9 +333,7 @@ void fatal (char *m, int line, int file)
/* /*
* Parse command line options. * Parse command line options.
*/ */
void get_option (argc, argv) void get_option (int *argc, char *argv[])
int *argc;
char *argv[];
{ {
int i; int i;