Changeset 206 for cpp/frams/virtfile/virtfile.cpp
- Timestamp:
- 04/03/14 01:24:30 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/virtfile/virtfile.cpp
r197 r206 4 4 5 5 #include "virtfile.h" 6 #include <common/stl-util.h> 6 7 7 8 VirtFILE *VirtFILE::Vstdin=0; … … 30 31 31 32 void VirtFILE::selectFileSystem(VirtFileSystem *s) {vfs=s;} 33 34 int VirtFILE::Vprintf(const char *format, va_list args) 35 { 36 string s=ssprintf_va(format,args); 37 return Vwrite(s.c_str(),1,s.size()); 38 } 32 39 33 40 int VirtFILE::printf(const char *format, ...)
Note: See TracChangeset
for help on using the changeset viewer.