/[sudobot]/trunk/lib/common/env.h
ViewVC logotype

Contents of /trunk/lib/common/env.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 575 - (show annotations)
Mon Jul 29 17:59:26 2024 UTC (8 months ago) by rakinar2
File MIME type: text/x-c
File size: 479 byte(s)
chore: add trunk
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 */

team@onesoftnet.eu.org
ViewVC Help
Powered by ViewVC 1.1.26