mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-19 01:03:22 +00:00
adab2b9e03
fix - added this in every button event switch: default: break;
16 lines
No EOL
300 B
C
16 lines
No EOL
300 B
C
#pragma once
|
|
|
|
#include <errno.h>
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
|
|
#ifndef _RSIZE_T_DECLARED
|
|
typedef uint64_t rsize_t;
|
|
#define _RSIZE_T_DECLARED
|
|
#endif
|
|
#ifndef _ERRNOT_DECLARED
|
|
typedef int16_t errno_t;
|
|
#define _ERRNOT_DECLARED
|
|
#endif
|
|
|
|
errno_t memset_s(void* s, rsize_t smax, int c, rsize_t n); |