pokeheartgold/tools/elfcoder/argparse.h
taxicat1 008118b6b3 Address review comments
- 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
2025-11-09 02:59:34 -05:00

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