Files
ss/include/rvl/VF/pf_clib.h
T
Elijah Thomas 26af4db82d update from dtk-template - clangd :) (#66)
* update from dtk-template and start work towards using clangd

* include <a> -> "a"

* Update build.yml

* remove/add non-trivial class in union warning
2024-10-16 15:36:02 -04:00

20 lines
484 B
C

#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