|
|
| version 1.2, 2003/06/17 04:26:46 | version 1.3, 2003/11/09 02:34:02 |
|---|---|
| Line 35 | Line 35 |
| * | * |
| * @(#)vsprintf.c 8.1 (Berkeley) 6/4/93 | * @(#)vsprintf.c 8.1 (Berkeley) 6/4/93 |
| * $FreeBSD: src/lib/libc/stdio/vsprintf.c,v 1.6 1999/08/28 00:01:21 peter Exp $ | * $FreeBSD: src/lib/libc/stdio/vsprintf.c,v 1.6 1999/08/28 00:01:21 peter Exp $ |
| * $DragonFly: src/lib/libc/stdio/vsprintf.c,v 1.1 2003/06/16 04:34:30 dillon Exp $ | * $DragonFly$ |
| */ | */ |
| #include <stdio.h> | #include <stdio.h> |
| #include <stdarg.h> | |
| #include <limits.h> | #include <limits.h> |
| int | int |
| vsprintf(str, fmt, ap) | vsprintf(char *str, const char *fmt, va_list ap) |
| char *str; | |
| const char *fmt; | |
| _BSD_VA_LIST_ ap; | |
| { | { |
| int ret; | int ret; |
| FILE f; | FILE f; |