nctref/src/ntc.h

14 lines
198 B
C
Raw Permalink Normal View History

2023-08-27 19:48:06 +03:00
#ifndef NTC_H
#define NTC_H
#include<stddef.h>
#include<stdint.h>
const char **ntc_get_import_paths();
2023-08-27 19:48:06 +03:00
const char* ntc_get_arg(const char *name);
intmax_t ntc_get_int(const char *name);
#endif