enacl/c_src/enacl.h
2020-01-17 15:46:38 +01:00

14 lines
216 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 nacl_error_tuple(ErlNifEnv *, char *);
#endif