This repository has been archived on 2026-03-18. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
netbenixCMD/commands/help.c
2020-06-02 11:23:12 +02:00

16 lines
No EOL
192 B
C

#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(){
}