Inital Commit
This commit is contained in:
commit
cc95ff1c3a
22 changed files with 1166 additions and 0 deletions
16
commands/help.c
Normal file
16
commands/help.c
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#ifdef _WIN32 || _WIN64
|
||||
#include <windows.h>
|
||||
#include <stdio.h>
|
||||
#endif
|
||||
|
||||
#ifdef linux
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#define OS "LINUX"
|
||||
#endif
|
||||
|
||||
#include "help.h"
|
||||
|
||||
void outputHelp(){
|
||||
|
||||
}
|
||||
Reference in a new issue