RGB Sunglasses Animation Extension API fw-v3.8.1-1-geacf2f0
rgbx ABI + C++ wrapper for sandboxed .llext animations
Loading...
Searching...
No Matches
rgbx_sys.h
Go to the documentation of this file.
1
58#ifndef RGBX_SYS_H_
59#define RGBX_SYS_H_
60
61#include <math.h>
62#include <stdarg.h>
63#include <stddef.h>
64#include <string.h>
65
66#ifdef __cplusplus
67extern "C" {
68#endif
69
94#if defined(__GNUC__) || defined(__clang__)
95__attribute__((format(printf, 1, 2)))
96#endif
97void printk(const char *fmt, ...);
98
109#if defined(__GNUC__) || defined(__clang__)
110__attribute__((format(printf, 1, 0)))
111#endif
112void vprintk(const char *fmt, va_list ap);
113
114#ifdef __cplusplus
115}
116#endif
117
118#endif /* RGBX_SYS_H_ */
void printk(const char *fmt,...)
Print a formatted message to the device console.
void vprintk(const char *fmt, va_list ap)
printk taking an already-started variadic argument list.