This repository has been archived on 2025-02-27. You can view files and clone it, but cannot push or open issues or pull requests.
portland-os/src/user/highway/vars.h
2020-09-13 22:06:40 -04:00

17 lines
No EOL
323 B
C

#ifndef VARS_H
#define VARS_H
#include <stdint.h>
struct no_null_sn {
const char *data;
uint32_t length;
};
void set_var(struct no_null_sn name, struct no_null_sn value);
const struct no_null_sn *get_var(struct no_null_sn name) __attribute__ ((pure));
void del_var(struct no_null_sn name);
void dump_vars();
#endif