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-07-24 16:50:12 +02:00

14 lines
No EOL
378 B
C

#include <stdlib.h>
#include <stdio.h>
#include "help.h"
//Print the help
void outputHelp(){
printf("usage: netbenixCMD [option]\n");
printf("Options:\n");
printf("--help : this help page\n");
printf("--gtk-test : opens the gtk test\n");
printf("--sql-test : make a test connection to a mysql server\n");
printf("--sys-info : shows informations about your system\n");
}