summaryrefslogtreecommitdiffstats
path: root/src/target/firmware/include/string.h
blob: f060659a02ca100f6a90b7d5856c42d400e6fb9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _STRING_H
#define _STRING_H

#include <sys/types.h>

size_t strnlen(const char *s, size_t count);
size_t strlen(const char *s);

void *memset(void *s, int c, size_t n);
void *memcpy(void *dest, const void *src, size_t n);

#endif