1
0
mirror of https://gitlab.labs.nic.cz/labs/bird.git synced 2024-05-11 16:54:54 +00:00

Implemented snprintf and similar functions. It took a lot of thinking,

but the modifications were relatively simple and straightforward.
This commit is contained in:
Martin Mares
1998-11-16 21:40:35 +00:00
parent c3e9b2ab24
commit 53a416d376
2 changed files with 52 additions and 13 deletions

View File

@@ -13,5 +13,7 @@
int bsprintf(char *str, const char *fmt, ...);
int bvsprintf(char *str, const char *fmt, va_list args);
int bsnprintf(char *str, int size, const char *fmt, ...);
int bvsnprintf(char *str, int size, const char *fmt, va_list args);
#endif