blob: 0c78272dad17609acb74a89de917c2f071120764 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#define STC_EXTERN // implement common extern, non-templated functions, e.g. _clist_mergesort().
#define STC_HEADER // don't implement clist_int itself, just dummy declare it.
#define i_val int
#include "../include/stc/clist.h"
#define STC_IMPLEMENT // implement the following.
#include "../include/stc/cstr.h"
#include "../include/stc/csview.h"
#include "../include/stc/cbits.h"
#include "../include/stc/crandom.h"
|