OSDN Git Service

(none)
[hos/hos-v4a.git] / aplfw / system / file / file_printformat.c
1 /** 
2  *  Hyper Operating System  Application Framework
3  *
4  * @file  file.c
5  * @brief %jp{ファイルシステム}
6  *
7  * Copyright (C) 2006 by Project HOS
8  * http://sourceforge.jp/projects/hos/
9  */
10
11
12 #include <stdio.h>
13 #include <string.h>
14 #include "file_local.h"
15 #include "system/sysapi/sysapi.h"
16
17
18 /* 書式付出力 */
19 int File_PrintFormat(HANDLE hFile, const char *pszFormat, ...)
20 {
21         va_list argptr;
22         int iRet;
23         
24         va_start(argptr, pszFormat);
25         iRet = File_PrintFormatV(hFile, pszFormat, argptr);
26         va_end(argptr);
27         
28         return iRet;
29 }
30
31
32 /* end of file */