mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-14 10:05:43 +01:00
37 lines
582 B
C
Executable File
37 lines
582 B
C
Executable File
//
|
|
// printf_lite.hpp
|
|
//
|
|
// Created by jief the 04 Apr 2019.
|
|
// Imported in CLover the 24 Feb 2020
|
|
//
|
|
#ifndef __PRINTF_LITE_CONF_H__
|
|
#define __PRINTF_LITE_CONF_H__
|
|
|
|
#include <stdarg.h>
|
|
#include <stddef.h> // for size_t
|
|
|
|
#ifndef __cplusplus
|
|
#ifdef _MSC_VER
|
|
typedef UINT16 wchar_t;
|
|
#endif
|
|
typedef UINT32 char32_t;
|
|
typedef UINT16 char16_t;
|
|
#endif
|
|
|
|
#ifdef _MSC_VER
|
|
# define __attribute__(x)
|
|
#endif
|
|
|
|
#ifdef DEBUG
|
|
#define DEFINE_SECTIONS 0
|
|
#endif
|
|
|
|
|
|
#define PRINTF_CFUNCTION_PREFIX
|
|
#define PRINTF_CFUNCTION_SUFFIX f
|
|
#define PRINTF_EMIT_CR 1
|
|
|
|
|
|
|
|
#endif // __PRINTF_LITE_CONF_H__
|