enacl/c_src/enacl.h
2020-02-04 14:00:02 +01:00

15 lines
265 B
C

#ifndef ENACL_H
#define ENACL_H
#include <erl_nif.h>
#define ATOM_OK "ok"
#define ATOM_ERROR "error"
#define ATOM_TRUE "true"
#define ATOM_FALSE "false"
ERL_NIF_TERM enacl_error_tuple(ErlNifEnv *, char *);
ERL_NIF_TERM enacl_internal_error(ErlNifEnv *);
#endif