Add wasm tacle-bench targets

This commit is contained in:
2026-06-12 20:06:22 +02:00
parent 30daa8a00c
commit 08c2e9c13d
1122 changed files with 520422 additions and 0 deletions

View File

@ -0,0 +1,18 @@
#ifndef AMMUNITION_STRING_H
#define AMMUNITION_STRING_H
typedef unsigned int size_t;
/*
Forward declaration of functions
*/
void *ammunition_memcpy( void *, const void *, size_t );
void *ammunition_memset( void *, int, size_t );
int ammunition_memcmp ( const void *mem1, const void *mem2, size_t size );
void *ammunition_memmove ( void *s1, const void *s2, size_t n );
int ammunition_strcmp ( const char *str1, const char *str2 );
#endif /* AMMUNITION_STRING_H */