server/src/names.h

18 lines
266 B
C
Raw Normal View History

2010-08-08 10:06:34 +02:00
#ifndef H_KRNL_NAMES
#define H_KRNL_NAMES
#include <stddef.h>
2010-08-08 10:06:34 +02:00
#ifdef __cplusplus
extern "C" {
#endif
2016-08-28 19:08:52 +02:00
struct unit;
void register_names(void);
const char *abkz(const char *s, char *buf, size_t size, size_t maxchars);
2010-08-08 10:06:34 +02:00
#ifdef __cplusplus
}
#endif
#endif