diff options
author | Chris Apers | 2003-06-08 09:29:53 +0000 |
---|---|---|
committer | Chris Apers | 2003-06-08 09:29:53 +0000 |
commit | ea5bdbde417765befc42b2e8f8cd3e72123bfda7 (patch) | |
tree | 507d089c31d0fbcb42d162673816141112df6830 /backends/PalmOS/Src/missing | |
parent | 2600628339853a6734c5ebfd44c849c31e3f321c (diff) | |
download | scummvm-rg350-ea5bdbde417765befc42b2e8f8cd3e72123bfda7.tar.gz scummvm-rg350-ea5bdbde417765befc42b2e8f8cd3e72123bfda7.tar.bz2 scummvm-rg350-ea5bdbde417765befc42b2e8f8cd3e72123bfda7.zip |
Reminder for future %c implementation
svn-id: r8394
Diffstat (limited to 'backends/PalmOS/Src/missing')
-rw-r--r-- | backends/PalmOS/Src/missing/_stdio.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/backends/PalmOS/Src/missing/_stdio.cpp b/backends/PalmOS/Src/missing/_stdio.cpp index 2a9de216eb..e2898ac738 100644 --- a/backends/PalmOS/Src/missing/_stdio.cpp +++ b/backends/PalmOS/Src/missing/_stdio.cpp @@ -338,6 +338,9 @@ Int16 sprintf(Char* s, const Char* formatStr, ...) /////////////////////////////////////////////////////////////////////////////// Int16 vsprintf(Char* s, const Char* formatStr, _Palm_va_list argParam) { +// Char buf[10]; +// StrPrintF(buf,"%c%c%c%c",'A' << 16 | 'B', 'C' << 16 | 'D'); + Char format[256]; // TODO : need a better modifier StrCopy(format,formatStr); |