mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-08-23 01:45:28 -05:00
27 lines
837 B
C
27 lines
837 B
C
/*
|
|
* Copyright (c) 2026 Gudf
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, version 3.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef NITROBTX_HELP_H
|
|
#define NITROBTX_HELP_H
|
|
|
|
#include <stdio.h>
|
|
|
|
void PrintVersion(FILE *out);
|
|
void PrintUsage(FILE *out, char *progPath);
|
|
void PrintOptionHelp(FILE *out, char option);
|
|
|
|
#endif // NITROBTX_HELP_H
|