Skip to content
Snippets Groups Projects
Commit f813303f authored by Romain Gabet's avatar Romain Gabet :speech_balloon:
Browse files

Add main.c test

parent 5090623c
No related branches found
No related tags found
No related merge requests found
#include <stdio.h>
#include <string.h>
int main(int argc, char **argv)
{
/* Arnold Robbins in the LJ of February '95, describing RCS */
if (argc > 1 && strcmp(argv[1], "-advice") == 0) {
printf("Don't Panic!\n");
return 42;
}
printf("Need an advice?\n");
return 0;
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment