15 lines
215 B
C
15 lines
215 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "lib/max_functions.h"
|
|
|
|
//global variables
|
|
static int state=0;
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
if (argc == 1)
|
|
printf("\n");
|
|
return EXIT_SUCCESS;
|
|
}
|