mirror of
https://github.com/zeldaret/ss
synced 2026-06-02 18:18:38 -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
15 lines
241 B
C
15 lines
241 B
C
#ifndef RVL_SDK_VF_PF_SERVICE_H
|
|
#define RVL_SDK_VF_PF_SERVICE_H
|
|
#include "common.h"
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
u16 VFiPF_GET_LE_U16(const u8 *buf);
|
|
void VFiPF_LE16_TO_U16_STR(u8 *str, u32 n);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|