blob: 5cc76ddc3dbb1c7cdf77e3c3724d8b3a9b7c3d0f [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001
2#ifndef __ASM_ARM_STRING_H
3#define __ASM_ARM_STRING_H
4
5#include <linux/types.h>
6
7extern uint32_t strlen( uint8_t* s );
8extern void * memset(void *, int, __kernel_size_t);
9extern int memcmp(void *a, void *c, int n);
10extern void memcpy(uint32_t dest, uint32_t src, uint32_t count);
11
12
13
14#endif