Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

vsprintf.h 366B

1234567891011121314
  1. #ifndef VSPRINTF_H
  2. #define VSPRINTF_H
  3. /*
  4. * Note that we cannot use __attribute__ (( format ( printf, ... ) ))
  5. * to get automatic type checking on arguments, because we use
  6. * non-standard format characters such as "%!" and "%@".
  7. *
  8. */
  9. extern int sprintf ( char *buf, const char *fmt, ... );
  10. extern void printf ( const char *fmt, ... );
  11. #endif /* VSPRINTF_H */