blob: d755a9d623f473a39520bd0ce7e920e001af4813 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef RVL_SDK_VF_PF_CLIB_H
#define RVL_SDK_VF_PF_CLIB_H
#include "common.h"
#ifdef __cplusplus
extern "C" {
#endif
int VFipf_toupper(int c);
void *VFipf_memcpy(void *dst, const void *src, size_t n);
void *VFipf_memset(void *dst, int ch, size_t n);
size_t VFipf_strlen(const char *str);
char *VFipf_strcpy(char *dst, const char *src);
int VFipf_strcmp(const char *s1, const char *s2);
int VFipf_strncmp(const char *s1, const char *s2, size_t n);
#ifdef __cplusplus
}
#endif
#endif
|