aboutsummaryrefslogtreecommitdiff
path: root/lib/stdio.h
blob: 201cce113bdbf83f287f7f13b2053614bb4a62b5 (plain)
1
2
3
4
5
6
#pragma once

/**
 * Supports %s (string), %d (decimal), %u (unsigned), %x (hexadecimal)
 */
int printf(const char *restrict format, ...);