Skip to content
Snippets Groups Projects
  • Avi Kivity's avatar
    a623c33a
    Add printf()-style output functions · a623c33a
    Avi Kivity authored
      sprintf(fmt, ...) - returns a std::stream
      fprintf(os, fmt, ...) - prints to a std::ostream&
    
    Easier than the usualy method of constructing a temporary ostringstream
    and formatting into that.
    a623c33a
    History
    Add printf()-style output functions
    Avi Kivity authored
      sprintf(fmt, ...) - returns a std::stream
      fprintf(os, fmt, ...) - prints to a std::ostream&
    
    Easier than the usualy method of constructing a temporary ostringstream
    and formatting into that.