Mercurial > hg > octave-nkf
comparison src/error.h @ 5567:80e629357483
[project @ 2005-12-07 06:31:28 by jwe]
author | jwe |
---|---|
date | Wed, 07 Dec 2005 06:31:28 +0000 |
parents | 4c8a2e4e0717 |
children | faafc2d98b8d |
comparison
equal
deleted
inserted
replaced
5566:2f5d0d8a7f13 | 5567:80e629357483 |
---|---|
35 extern void message (const char *name, const char *fmt, ...); | 35 extern void message (const char *name, const char *fmt, ...); |
36 extern void usage (const char *fmt, ...); | 36 extern void usage (const char *fmt, ...); |
37 extern void warning (const char *fmt, ...); | 37 extern void warning (const char *fmt, ...); |
38 extern void error (const char *fmt, ...); | 38 extern void error (const char *fmt, ...); |
39 extern void parse_error (const char *fmt, ...); | 39 extern void parse_error (const char *fmt, ...); |
40 | |
41 extern void | |
42 message_with_id (const char *id, const char *name, const char *fmt, ...); | |
43 | |
44 extern void | |
45 usage_with_id (const char *id, const char *fmt, ...); | |
46 | |
47 extern void | |
48 warning_with_id (const char *id, const char *fmt, ...); | |
49 | |
50 extern void | |
51 error_with_id (const char *id, const char *fmt, ...); | |
52 | |
53 extern void | |
54 parse_error_with_id (const char *id, const char *fmt, ...); | |
55 | |
40 extern void panic (const char *fmt, ...) GCC_ATTR_NORETURN; | 56 extern void panic (const char *fmt, ...) GCC_ATTR_NORETURN; |
41 | 57 |
42 // Helper function for print_usage defined in defun.cc. | 58 // Helper function for print_usage defined in defun.cc. |
43 extern void defun_usage_message (const std::string& msg); | 59 extern void defun_usage_message (const std::string& msg); |
44 | 60 |