mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-22 04:47:56 -04:00
21 lines
No EOL
333 B
C
21 lines
No EOL
333 B
C
#ifndef VX_PRINT_H
|
|
#define VX_PRINT_H
|
|
|
|
#include <stdarg.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int vx_vprintf(const char* format, va_list va);
|
|
int vx_printf(const char * format, ...);
|
|
|
|
void vx_putchar(int c);
|
|
void vx_putint(int value, int base);
|
|
void vx_putfloat(float value, int precision);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif |