Files
ss/include/rvl/VF/pf_w_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

16 lines
329 B
C

#ifndef RVL_SDK_VF_PF_W_CLIB_H
#define RVL_SDK_VF_PF_W_CLIB_H
#include "common.h"
#ifdef __cplusplus
extern "C" {
#endif
size_t VFipf_w_strlen(const wchar_t *str);
wchar_t *VFipf_w_strcpy(wchar_t *dst, const wchar_t *src);
int VFipf_w_strncmp(const wchar_t *s1, const wchar_t *s2, size_t n);
#ifdef __cplusplus
}
#endif
#endif