You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/include/lokinet.h

24 lines
258 B
C

#ifndef LOKINET_H
#define LOKINET_H
#ifdef __cplusplus
extern "C" {
#endif
struct lokinet_context;
struct lokinet_context *
lokinet_context_new();
void
lokinet_context_free(struct lokinet_context *);
#ifdef __cplusplus
}
#endif
#endif