server/src/prefix.h

19 lines
276 B
C
Raw Normal View History

#pragma once
#ifndef PREFIX_H
#define PREFIX_H
#ifdef __cplusplus
extern "C" {
#endif
2021-02-16 10:09:14 +01:00
extern char **race_prefixes;
/* zero-terminated array of valid prefixes */
int add_raceprefix(const char *);
void free_prefixes(void);
#ifdef __cplusplus
}
#endif
#endif