2023-08-27 19:48:06 +03:00
|
|
|
#ifndef NTC_H
|
|
|
|
#define NTC_H
|
|
|
|
|
2025-06-10 22:07:22 +03:00
|
|
|
#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);
|
|
|
|
|
2025-06-10 22:07:22 +03:00
|
|
|
intmax_t ntc_get_int(const char *name);
|
|
|
|
|
|
|
|
#endif
|