-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstorage.c
executable file
·37 lines (29 loc) · 972 Bytes
/
storage.c
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
26
27
28
29
30
31
32
33
34
35
36
37
/* vim: expandtab sw=4 sts=4 ts=8
**********************************************************
* storage.c
*
* Copyright 2004, Stefan Siegl <ssiegl@gmx.de>, Germany
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Publice License,
* version 2 or any later. The license is contained in the COPYING
* file that comes with the wspacegen distribution.
*
* wspacegen data storage (in memory representation)
*/
#include "storage.h"
#ifndef NULL
#define NULL ((void*)0)
#endif
/* this file will probably stay rather empty, since it's only necessary
* to define the wsdata and compose stack somewhere.
*/
STACK_DEF(unsigned char, wsdata, wsdata_len, wsdata_alloc)
STACK_DEF(unsigned char, compose, compose_len, compose_alloc)
/***** -*- emacs is great -*-
Local Variables:
mode: C
c-basic-offset: 4
indent-tabs-mode: nil
end:
****************************/