Add wasm tacle-bench targets
This commit is contained in:
18
targets/wasm-tacle/sequential/ammunition/ammunition_string.h
Executable file
18
targets/wasm-tacle/sequential/ammunition/ammunition_string.h
Executable 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 */
|
||||
|
||||
Reference in New Issue
Block a user