| 846 | } |
| 847 | |
| 848 | const char * |
| 849 | do_runtime_info(int *rtcontext) |
| 850 | { |
| 851 | const char *retval = (const char *) 0; |
| 852 | |
| 853 | if (!done_runtime_opt_init_once) |
| 854 | runtime_info_init(); |
| 855 | if (idxopttext && rtcontext) |
| 856 | if (*rtcontext >= 0 && *rtcontext < MAXOPT) { |
| 857 | retval = opttext[*rtcontext]; |
| 858 | *rtcontext += 1; |
| 859 | } |
| 860 | return retval; |
| 861 | } |
| 862 | |
| 863 | void |
| 864 | release_runtime_info(void) |
no test coverage detected