J
jackassplus
If you have lots of variables:
char card_data[100]
[10];
char file_data[100][15];
double file_time[100] = {0};
double temp_time[100] = {0};
int j = 0;
int search_index;
char *ps;
char buf[BUFSIZE];
char *pattern[] = {
"[0-9]{10}\
\&",
"[A-Z]{2}[0-9]{3}[A-Z]{3}[0][0-9]{4}\\<",
"[0-9]\\.[0-9][0-9]\
\<",
"\\>Y\
\<"
};
regex_t re, re1, re2, re3;
Is there any rule/convention for declaring them? Should the chars be
together, ints together, etc?
char card_data[100]
[10];
char file_data[100][15];
double file_time[100] = {0};
double temp_time[100] = {0};
int j = 0;
int search_index;
char *ps;
char buf[BUFSIZE];
char *pattern[] = {
"[0-9]{10}\
\&",
"[A-Z]{2}[0-9]{3}[A-Z]{3}[0][0-9]{4}\\<",
"[0-9]\\.[0-9][0-9]\
\<",
"\\>Y\
\<"
};
regex_t re, re1, re2, re3;
Is there any rule/convention for declaring them? Should the chars be
together, ints together, etc?