22 lines
333 B
C
22 lines
333 B
C
#ifndef ALARGS_H_INCLUDED
|
|
#define ALARGS_H_INCLUDED
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct {
|
|
int argc;
|
|
char** argv;
|
|
} alyson_args_t, *ALArgs;
|
|
|
|
ALArgs al_args_create(int argc, char** argv);
|
|
void al_args_destroy(ALArgs args);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // ALARGS_H_INCLUDED
|