MIRROR: javascript for 馃悳's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at mir/inline-method 10 lines 236 B view raw
1#ifndef SERVER_H 2#define SERVER_H 3 4#include <stdbool.h> 5#include "types.h" 6 7ant_value_t server_start_from_export(ant_t *js, ant_value_t default_export); 8int server_maybe_start_from_export(ant_t *js, ant_value_t default_export); 9 10#endif