mirror of
https://github.com/waku-org/nwaku.git
synced 2025-01-10 06:46:24 +00:00
be717ce5f3
- Move stuff to Makefile - Move libwaku to root - Make examples compile for C and Go - Update README
15 lines
193 B
C
15 lines
193 B
C
#ifndef __LIBWAKU_H__
|
|
#define __LIBWAKU_H__
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
// Initialize Nim
|
|
void NimMain();
|
|
|
|
char* info(const char* wakuNode);
|
|
|
|
void echo();
|
|
|
|
#endif //__LIBWAKU_H__
|