diff options
| author | Tyge Løvset <[email protected]> | 2022-05-30 14:22:44 +0200 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2022-05-30 14:22:44 +0200 |
| commit | 58bb58e7980d1eae175ed66dbe873893a05ab81e (patch) | |
| tree | 2756b2d1b62264c34a6d40265dc85f07eb2f1112 /src | |
| parent | b28d3fa7c3b9233ca485014744bf84e6c4f5a1d3 (diff) | |
| download | STC-modified-58bb58e7980d1eae175ed66dbe873893a05ab81e.tar.gz STC-modified-58bb58e7980d1eae175ed66dbe873893a05ab81e.zip | |
Done refactoring:
- Non-templated types (cstr, csview, cbits, crandom) have no longer default static linking. Now i_header is defined, i.e. files are as headers only.
==> Define `i_implement` before file inclusion. Still possible to do static linkage by defining `i_static` before inclusion or global STC_STATIC.
- Templated containers still have static linkage by default.
- Renamed csview_substr(), csview_slice() to csview_substr_ex(), csview_slice_ex(). Added simpler inlined csview_substr(), csview_slice().
Diffstat (limited to 'src')
| -rw-r--r-- | src/cregex.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cregex.c b/src/cregex.c index 34c78090..99b0fa03 100644 --- a/src/cregex.c +++ b/src/cregex.c @@ -31,7 +31,9 @@ THE SOFTWARE. #include <setjmp.h>
#include <string.h>
#include <ctype.h>
+#include <stdio.h>
#include <stc/cregex.h>
+#include <stc/utf8.h>
typedef uint32_t Rune; /* Utf8 code point */
typedef int32_t Token;
|
