aboutsummaryrefslogblamecommitdiff
path: root/src/common/include/kogata/printf.h
blob: 121af7851c40ceba9c9371d3da201a49863113e5 (plain) (tree)
1
2
3
4
5
6
7
8
9

            

                   




                                                                  

                                                                                        
                                   
#pragma once

#include <stddef.h>
#include <stdint.h>
#include <stdarg.h>

int snprintf(char* s, size_t n, const char* format, ...);
int vsnprintf(char* s, size_t n, const char* format, va_list arg);

int vcprintf(int (*putc_fun)(int c, void* p), void* p, const char* format, va_list arg);

/* vim: set ts=4 sw=4 tw=0 noet :*/