summaryrefslogtreecommitdiffstats
path: root/zix/strindex.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-11-11 12:07:48 +0100
committerDavid Robillard <d@drobilla.net>2020-11-11 12:07:48 +0100
commit387f52cd29b6078d441da5fd07a951a481c10b6d (patch)
tree0f72b0cd5cbaeaa13b3ea7867846aea87a3d4a87 /zix/strindex.c
parente800887f557d9336bb4e8cf2ac20e1f16d81de70 (diff)
downloadzix-387f52cd29b6078d441da5fd07a951a481c10b6d.tar.gz
zix-387f52cd29b6078d441da5fd07a951a481c10b6d.tar.bz2
zix-387f52cd29b6078d441da5fd07a951a481c10b6d.zip
Remove redundant API attributes in implementation files
Diffstat (limited to 'zix/strindex.c')
-rw-r--r--zix/strindex.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/zix/strindex.c b/zix/strindex.c
index 103ea50..cbc218d 100644
--- a/zix/strindex.c
+++ b/zix/strindex.c
@@ -44,7 +44,6 @@ strindex_insert(ZixStrindexNode* n,
char* first,
char* last);
-ZIX_API
ZixStrindex*
zix_strindex_new(const char* s)
{
@@ -79,7 +78,6 @@ zix_strindex_free_rec(ZixStrindexNode* n)
}
}
-ZIX_API
void
zix_strindex_free(ZixStrindex* strindex)
{
@@ -191,7 +189,6 @@ strindex_insert(ZixStrindexNode* n, char* suffix_first, char* first, char* last)
return ZIX_STATUS_SUCCESS;
}
-ZIX_API
ZixStatus
zix_strindex_find(ZixStrindex* strindex, const char* const str, char** match)
{