[go: up one dir, main page]

Menu

[r69]: / engine / script.hpp  Maximize  Restore  History

Download this file

25 lines (18 with data), 845 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef __IRE__SCRIPT__
#define __IRE__SCRIPT__
#include "core.hpp"
extern void Compile(char *file);
extern void Restring();
/*
extern int getnum4char(char *name); // Find index in array, of a character
extern int getnum4sequence(char *name); // Find index in array, of a sequence
extern int getnum4sprite(char *name); // Find index in array, of a sprite
extern int getnum4VRM(char *name); // Find index in array, of a VRM
*/
//extern char *rest(char *input); // Get pointer to tail of string
extern char *last(char *input); // Get pointer to end of tail
extern char *first(char *input); // Get COPY of head of string
extern char *hardfirst(char *line); // Mutilate original string
extern void Strip(char *tbuf); // Eliminate trailing spaces
extern int FindRooftile(const char *name);
#endif