This commit is contained in:
n0ffie 2025-02-12 23:24:58 +01:00
parent 2dbfa1b99e
commit b1230534c5
22 changed files with 547 additions and 429 deletions

22
alyson/includes/alargs.h Normal file
View file

@ -0,0 +1,22 @@
#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