Search:

Type: Posts; User: brewbuck

Search: Search took 0.05 seconds.

  1. Replies
    17
    Views
    4,497

    int safeprint ( char* string , ... ) { ...

    int safeprint ( char* string , ... )
    {
    va_list va;

    va_start(va, string);
    count = vprintf(string, va);
    va_end(va);
    // insert silly error checking here
    }
  2. Replies
    17
    Views
    4,497

    What if ErrorMessage() fails?

    What if ErrorMessage() fails?
Results 1 to 2 of 2