Last change
on this file since 346 was 2, checked in by Rick van der Zwet, 15 years ago |
Initial import of data of old repository ('data') worth keeping (e.g. tracking
means of URL access statistics)
|
File size:
598 bytes
|
Rev | Line | |
---|
[2] | 1 | #include "debug.h"
|
---|
| 2 | #include "types.h"
|
---|
| 3 |
|
---|
| 4 | extern int msglevel; /* the higher, the more messages... */
|
---|
| 5 |
|
---|
| 6 | void pmesg(int level, const char* format, ...) {
|
---|
| 7 | va_list args;
|
---|
| 8 |
|
---|
| 9 | if (level <= msglevel) {
|
---|
| 10 | va_start(args, format);
|
---|
| 11 | vfprintf(stderr, format, args);
|
---|
| 12 | va_end(args);
|
---|
| 13 | }
|
---|
| 14 | }
|
---|
| 15 |
|
---|
| 16 | void pmesg_node(int level, const Node& n)
|
---|
| 17 | {
|
---|
| 18 | Node &node = const_cast<Node&>(n);
|
---|
| 19 | const char * const node_type_str = NodeTypeToString(node.GetNodeType());
|
---|
| 20 | const char * const return_type_str = ReturnTypeToString(node.GetReturnType());
|
---|
| 21 | pmesg(level, "Parser: Node: %s; Type: %s;\n", node_type_str, return_type_str);
|
---|
| 22 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.