[go: up one dir, main page]

Menu

[9db7f1]: / functions.hh  Maximize  Restore  History

Download this file

26 lines (20 with data), 567 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
25
// extern function declarations
#ifndef FUNCTIONS_HH
#define FUNCTIONS_HH
#include "stdio.h"
#include "types.hh"
class utf_string;
// cygwin fix:
#ifndef __VALIST
#ifdef va_list
#define __VALIST va_list
#else
#define __VALIST void*
#endif
#endif
extern void format_message(int code, utf_string const& file, int line, __VALIST ap);
extern void message_at(int code, utf_string const& file, int line, ...);
extern int get_type(utf_string const& str);
extern int get_number_of_parameters(utf_string const& str);
extern unsigned string_hash_function(byte* p);
#endif