htils 1
A small set of utilities for C programming.
Loading...
Searching...
No Matches
dotenv.h
Go to the documentation of this file.
1#ifndef HTILS_DOTENV_H
2#define HTILS_DOTENV_H
3
4#include <htils/arena.h>
5#include <htils/basictypes.h>
6#include <htils/string.h>
7
8//
9//
10//
11
25i32 htils_dotenv_load(arena_t *arena, const string *path);
26
27#endif // !HTILS_DOTENV_H
int32_t i32
Definition basictypes.h:26
i32 htils_dotenv_load(arena_t *arena, const string *path)
Load a dotenv file, or a path with a .env file within it.
Definition dotenv.c:179
An arena.
Definition arena.h:26