about summary refs log tree commit diff stats
path: root/src/include/dictionnary.h
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2021-05-29 18:05:37 +0200
committerptitSeb <sebastien.chev@gmail.com>2021-05-29 18:05:37 +0200
commitf8a969d43ed26e64d21238ead0e9512360fb1fdd (patch)
tree96dd023f4fef48fe62f8a1d9b7c3a1d61b0c2af4 /src/include/dictionnary.h
parent55720342adbf22ba318a66b30ed9ea6ec789b032 (diff)
downloadbox64-f8a969d43ed26e64d21238ead0e9512360fb1fdd.tar.gz
box64-f8a969d43ed26e64d21238ead0e9512360fb1fdd.zip
Reworked elfloader, handle versionned symbols now
Diffstat (limited to 'src/include/dictionnary.h')
-rwxr-xr-xsrc/include/dictionnary.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/include/dictionnary.h b/src/include/dictionnary.h
new file mode 100755
index 00000000..e2ec1466
--- /dev/null
+++ b/src/include/dictionnary.h
@@ -0,0 +1,13 @@
+#ifndef __DICTIONNARY_H_

+#define __DICTIONNARY_H_

+#include <stdint.h>

+

+typedef void dic_t;

+

+dic_t *NewDictionnary();

+void FreeDictionnary(dic_t **dic);

+

+const char* AddDictionnary(dic_t* dic, const char* s);

+int ExistDictionnary(dic_t* dic, const char* s);

+

+#endif //__DICTIONNARY_H_
\ No newline at end of file