Lines Matching defs:err
55 // Return with an error, putting an allocated error message in *err. Doing an
61 *err = aprintf(__VA_ARGS__); \
71 // 0 is returned, and *err is set to NULL. On error, 1 is returned, where the
72 // details of the error are returned in *err, a pointer to an allocated string.
86 local int gzip_normalize(FILE *in, FILE *out, char **err) {
453 *err = NULL;
464 char *err;
465 int ret = gzip_normalize(stdin, stdout, &err);
467 fprintf(stderr, "gznorm error: %s\n", err);
468 free(err);