#include <stdio.h>#include <stdbool.h>#include <string.h>Defines | |
| #define | assert(x) |
| Printf implementation. | |
Functions | |
| __attribute__ ((weak)) | |
| const char * | handle_formatstring (putchar_fn put, void *data, const char *format, va_list *ap) |
| int | vprintf (const char *format, va_list ap) |
| int | vsnprintf (char *str, size_t size, const char *format, va_list ap) |
| int | printf (const char *format,...) |
| int | snprintf (char *str, size_t size, const char *format,...) |
| int | sprintf (char *str, const char *format,...) |
| #define assert | ( | x | ) |
Printf implementation.
Copyright (C) 2007-2008, Bernhard Kauer <kauer@tudos.org>
This file is part of Florence2.
Florence2 is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation.
Florence2 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License version 2 for more details.
| __attribute__ | ( | (weak) | ) |
| const char* handle_formatstring | ( | putchar_fn | put, | |
| void * | data, | |||
| const char * | format, | |||
| va_list * | ap | |||
| ) |
| int printf | ( | const char * | format, | |
| ... | ||||
| ) |
| int snprintf | ( | char * | str, | |
| size_t | size, | |||
| const char * | format, | |||
| ... | ||||
| ) |
| int sprintf | ( | char * | str, | |
| const char * | format, | |||
| ... | ||||
| ) |
| int vprintf | ( | const char * | format, | |
| va_list | ap | |||
| ) |
| int vsnprintf | ( | char * | str, | |
| size_t | size, | |||
| const char * | format, | |||
| va_list | ap | |||
| ) |
1.7.1