summaryrefslogtreecommitdiffstats
path: root/src/include/string.h
blob: 30c878d6575c973b362a7ba465f014a7d456e5d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef __STRING_H
#define __STRING_H

#include <stdint.h>

#ifdef __cplusplus
extern "C" 
{
#endif

    void* memset(void* s, int c, size_t n);

    char* strcpy(char* d, const char* s);
    int strcmp(const char* s1, const char* s2);

#ifdef __cplusplus
};
#endif

#endif
OpenPOWER on IntegriCloud