-
Notifications
You must be signed in to change notification settings - Fork 75
/
infinite-taunt.h
23 lines (19 loc) · 944 Bytes
/
infinite-taunt.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef INFINITE_TAUNT_H__
#define INFINITE_TAUNT_H__
#include "mtwist.h"
enum planet_type {
planet_type_rocky,
planet_type_earthlike,
planet_type_gas_giant,
};
extern enum planet_type planet_type_from_string(char *s);
extern void infinite_taunt(struct mtwist_state *mt, char *buffer, int buflen);
extern void planet_description(struct mtwist_state *mt, char *buffer, int buflen,
int line_len, enum planet_type ptype);
extern void starbase_attack_warning(struct mtwist_state *mt, char *buffer, int buflen, int line_len);
extern void cop_attack_warning(struct mtwist_state *mt, char *buffer, int buflen, int line_len);
extern void character_name(struct mtwist_state *mt, char *buffer, int buflen);
extern void robot_name(struct mtwist_state *mt, char *buffer, int buflen);
extern void ship_name(struct mtwist_state *mt, char *buffer, int buflen);
extern void generate_crime(struct mtwist_state *mt, char *buffer, int buflen);
#endif