summaryrefslogtreecommitdiffhomepage
path: root/examples/splitstr.c
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2022-05-30 14:22:44 +0200
committerTyge Løvset <[email protected]>2022-05-30 14:22:44 +0200
commit58bb58e7980d1eae175ed66dbe873893a05ab81e (patch)
tree2756b2d1b62264c34a6d40265dc85f07eb2f1112 /examples/splitstr.c
parentb28d3fa7c3b9233ca485014744bf84e6c4f5a1d3 (diff)
downloadSTC-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 'examples/splitstr.c')
-rw-r--r--examples/splitstr.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/splitstr.c b/examples/splitstr.c
index 390a6c6f..0cd48067 100644
--- a/examples/splitstr.c
+++ b/examples/splitstr.c
@@ -1,7 +1,9 @@
+#define i_implement
#include <stc/cstr.h>
+#define i_implement
+#include <stc/csview.h>
#define i_val_str
#include <stc/cvec.h>
-#include <stc/csview.h>
void print_split(csview str, csview sep)
{