mirror of
https://github.com/huuck/FlipperZeroNRFJammer.git
synced 2026-04-26 06:09:57 -07:00
18 lines
386 B
C
18 lines
386 B
C
#pragma once
|
|
#include <string.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// NOTE The following functions are not available in the OFW, so we need to reimplement them as a polyfill.
|
|
|
|
char *strcat_(char *dest, const char *src);
|
|
char *rawmemchr_(char *s, char c);
|
|
char *strpbrk_(char *s1, const char *s2);
|
|
char *strtok_(char *s, const char *delim);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|