stuff
This commit is contained in:
parent
2dbfa1b99e
commit
b1230534c5
22 changed files with 547 additions and 429 deletions
22
alyson/includes/alargs.h
Normal file
22
alyson/includes/alargs.h
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue