|
|
| version 1.2, 2003/06/17 04:26:46 | version 1.3, 2003/11/09 02:34:02 |
|---|---|
| Line 35 | Line 35 |
| * | * |
| * @(#)vsnprintf.c 8.1 (Berkeley) 6/4/93 | * @(#)vsnprintf.c 8.1 (Berkeley) 6/4/93 |
| * $FreeBSD: src/lib/libc/stdio/vsnprintf.c,v 1.12.2.1 2002/09/23 06:58:17 maxim Exp $ | * $FreeBSD: src/lib/libc/stdio/vsnprintf.c,v 1.12.2.1 2002/09/23 06:58:17 maxim Exp $ |
| * $DragonFly: src/lib/libc/stdio/vsnprintf.c,v 1.1 2003/06/16 04:34:29 dillon Exp $ | * $DragonFly$ |
| */ | */ |
| #include <limits.h> | #include <limits.h> |
| #include <stdio.h> | #include <stdio.h> |
| #include <stdarg.h> | |
| int | int |
| vsnprintf(str, n, fmt, ap) | vsnprintf(char *str, size_t n, const char *fmt, va_list ap) |
| char *str; | |
| size_t n; | |
| const char *fmt; | |
| _BSD_VA_LIST_ ap; | |
| { | { |
| size_t on; | size_t on; |
| int ret; | int ret; |