12 lines
202 B
C
12 lines
202 B
C
#include <stdio.h>
|
|
#include "helper.h"
|
|
#define NAME "args"
|
|
|
|
int main(int argc, char **argv){
|
|
if (argc < 2) {
|
|
PRINT_ERROR("%s obviously needs arguments to work…", NAME);
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|