| | 1 | #charset "us-ascii" |
| | 2 | |
| | 3 | /* |
| | 4 | * Copyright (c) 1999, 2006 Michael J. Roberts |
| | 5 | * |
| | 6 | * This file is part of TADS 3 |
| | 7 | * |
| | 8 | * This header defines the t3vmTEST function set. This function set is |
| | 9 | * intended primarily for use by the developers of the VM itself, for |
| | 10 | * testing purposes. User could should not use this function set, as the |
| | 11 | * functionality here is not generally useful to "real" programs and is |
| | 12 | * subject to future incompatible changes. |
| | 13 | */ |
| | 14 | |
| | 15 | /* |
| | 16 | * T3 intrinsic function set definition |
| | 17 | */ |
| | 18 | |
| | 19 | #ifndef T3TEST_H |
| | 20 | #define T3TEST_H |
| | 21 | |
| | 22 | /* |
| | 23 | * define the T3 Test system interface |
| | 24 | */ |
| | 25 | intrinsic 't3vmTEST/010000' |
| | 26 | { |
| | 27 | t3test_get_obj_id(obj); |
| | 28 | t3test_get_obj_gc_state(id); |
| | 29 | t3test_get_charcode(c); |
| | 30 | } |
| | 31 | |
| | 32 | #endif /* T3TEST_H */ |