parrotcode: Warning and error reporting | |
Contents | C |
src/warnings.c - Warning and error reporting
Parrot STRING
and C string versions of a function to print warning/error messages.
void print_pbc_location(PARROT_INTERP)
PIO_STDERR
.static INTVAL print_warning(PARROT_INTERP, NULLOK(STRING *msg))
PARROT_API INTVAL Parrot_warn(PARROT_INTERP, INTVAL warnclass, ARGIN(const char *message), ...)
message, ..
can be a Parrot_vsprintf_c()
format with arguments.PARROT_API INTVAL Parrot_warn_s(NULLOK_INTERP, INTVAL warnclass, NOTNULL(STRING *message), ...)
STRING
warning/error reporter.message, ..
can be a Parrot_vsprintf_s()
format with arguments.include/parrot/warnings.h.
|