2015-09-12 12:24:10 +02:00
|
|
|
#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 */
|
2015-09-12 12:24:10 +02:00
|
|
|
|
2016-11-23 18:56:40 +01:00
|
|
|
int add_raceprefix(const char *);
|
2015-09-12 12:29:42 +02:00
|
|
|
void free_prefixes(void);
|
2015-09-12 12:24:10 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|