mirror of
https://github.com/zeldaret/ss
synced 2026-07-04 04:40:39 -04:00
26af4db82d
* update from dtk-template and start work towards using clangd * include <a> -> "a" * Update build.yml * remove/add non-trivial class in union warning
16 lines
329 B
C
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
|