You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
278 B
15 lines
278 B
9 years ago
|
#include <stdio.h>
|
||
|
|
||
|
int main(int argc, char* argv[])
|
||
|
{
|
||
|
int i;
|
||
|
for (i = 1; i < argc; ++i) {
|
||
|
if (argv[i][0] != '-') {
|
||
|
fprintf(stdout, "%s:0:0: warning: message [checker]\n", argv[i]);
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
fprintf(stderr, "1 warning generated.\n");
|
||
|
return 0;
|
||
|
}
|