colysis/alyson/includes/alargs.h
2025-02-12 23:24:58 +01:00

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