Move [v]ssnprintf() from iscsi.c into vsprintf.c; we need them

elsewhere as well.
This commit is contained in:
Michael Brown
2007-05-31 13:26:50 +00:00
parent a6a18ae9af
commit 335b99a39d
3 changed files with 44 additions and 26 deletions

View File

@@ -64,4 +64,8 @@ struct printf_context {
extern size_t vcprintf ( struct printf_context *ctx, const char *fmt,
va_list args );
extern int vssnprintf ( char *buf, ssize_t ssize, const char *fmt,
va_list args );
extern int ssnprintf ( char *buf, ssize_t ssize, const char *fmt, ... );
#endif /* _GPXE_VSPRINTF_H */