mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-03-21 17:25:33 -05:00
- all local vars to camelcase - header include guards with lib name - comments for preprocessor directives - asm defs back to respective .inc files - /lib/dsprot/tools/ merged to /tools/ - unprefixed globals prefixed - sdk defs consolidated to sdk include - lsf lib split to objects
10 lines
174 B
C
10 lines
174 B
C
#ifndef ARGPARSE_H
|
|
#define ARGPARSE_H
|
|
|
|
#include "encoder.h"
|
|
|
|
int ArgParse_CreateTask(EncodingTask *task, char **argv);
|
|
void ArgParse_DestroyTask(EncodingTask *task);
|
|
|
|
#endif
|