/[sudobot]/branches/6.x/lib/common/env.h
ViewVC logotype

Contents of /branches/6.x/lib/common/env.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (show annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months ago) by rakinar2
File MIME type: text/x-c
File size: 479 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
1 #ifndef SUDOBOT_ENV_ENV_H
2 #define SUDOBOT_ENV_ENV_H
3
4 struct envtable;
5
6 typedef struct env {
7 char *filepath;
8 struct envtable *table;
9 char *error;
10 size_t index;
11 char *contents;
12 size_t length;
13 size_t current_line;
14 } env_t;
15
16 env_t *env_init();
17 bool env_load(env_t *env);
18 void env_free(env_t *env);
19 const char *env_get_local(env_t *env, const char *restrict name);
20 const char *env_get(env_t *env, const char *restrict name);
21
22 #endif /* SUDOBOT_ENV_ENV_H */

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26