diff options
| author | Laurent Bercot <ska-skaware@skarnet.org> | 2021-06-28 21:35:19 +0000 |
|---|---|---|
| committer | Laurent Bercot <ska@appnovation.com> | 2021-06-28 21:35:19 +0000 |
| commit | 4b057ce275a2761656b62a3fa1e57ebf934c3af8 (patch) | |
| tree | d11a170b2e871b061e5998eba9b507c198ca2460 /src/server/dynstorage.h | |
| parent | ae1a76cad535a04f0c059e8dae9c8a27a84222a4 (diff) | |
| download | s6-rc-4b057ce275a2761656b62a3fa1e57ebf934c3af8.tar.gz | |
Add dynstorage, finish state IO
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/server/dynstorage.h')
| -rw-r--r-- | src/server/dynstorage.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/server/dynstorage.h b/src/server/dynstorage.h new file mode 100644 index 0000000..b935cc9 --- /dev/null +++ b/src/server/dynstorage.h @@ -0,0 +1,11 @@ +/* ISC license. */ + +#ifndef S6RCD_DYNSTORAGE_H +#define S6RCD_DYNSTORAGE_H + + /* Storage for dynamic strings such as instance parameters */ + +extern char const *dynstorage_add (char const *) ; +extern void dynstorage_remove (char const *) ; + +#endif |
