Lines Matching defs:errors
92 * Emit 'note' formatted message on configured 'errors' stream, if verbose was
105 * Emit warning formatted message on configured 'errors' stream unless
117 * Emit help formatted message on given stream. This is for errors with or
120 void helpf(FILE *errors, const char *fmt, ...)
126 fputs("curl: ", errors); /* prefix it */
127 vfprintf(errors, fmt, ap);
129 fputs("\n", errors); /* newline it */
131 fprintf(errors, "curl: try 'curl --help' "
139 * Emit error message on error stream if not muted. When errors are not tied
140 * to command line arguments, use helpf() for such errors.