Exemple #1
0
void conoutf(int type, const char *fmt, ...)
{
    va_list args;
    va_start(args, fmt);
    conoutfv(type, fmt, args);
    va_end(args);
}
Exemple #2
0
int main() {
  func = &strcpy;
  conoutfv("*staticccz*");
  printf("*%.2f,%.2f,%.2f*\n", S::getIdentity().x, S::getIdentity().y,
         S::getIdentity().z);
  return 0;
}
Exemple #3
0
void conoutf(const char *fmt, ...)
{
    va_list args;
    va_start(args, fmt);
    conoutfv(CON_INFO, fmt, args);
    va_end(args);
}