* New version 2.21.999
[alpine.git] / pico / utf8stub.h
blob1e4df089869e709e2e607d32fcab1407f7ea1e0d
1 /*
2 * $Id: utf8stub.h 764 2007-10-23 23:44:49Z hubert@u.washington.edu $
4 * ========================================================================
5 * Copyright 2006-2007 University of Washington
6 * Copyright 2013-2018 Eduardo Chappa
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
12 * http://www.apache.org/licenses/LICENSE-2.0
14 * ========================================================================
18 #ifndef UTF8STUB_H
19 #define UTF8STUB_H
21 void *fs_get(size_t size);
22 void fs_resize(void **block,size_t size);
23 void fs_give(void **block);
24 void fatal(char *s);
25 int compare_ulong(unsigned long l1, unsigned long l2);
26 int compare_cstring(unsigned char *s1, unsigned char *s2);
27 int panicking(void);
29 #endif /* UTF8STUB_H */