?? heimdal3.c
字號:
/* * heimdal3.c: * This file is automatically generated; please do not edit it. */#include <stdlib.h>static const char * const text[] = { "Test message 1", "Test message 2", 0};struct error_table { char const * const * msgs; long base; int n_msgs;};struct et_list { struct et_list *next; const struct error_table * table;};extern struct et_list *_et_list;const struct error_table et_h3test_error_table = { text, 43787520L, 2 };static struct et_list link = { 0, 0 };void initialize_h3test_error_table(void);void initialize_h3test_error_table(void) { if (!link.table) { link.next = _et_list; link.table = &et_h3test_error_table; _et_list = &link; }}/* For Heimdal compatibility */void initialize_h3test_error_table_r(struct et_list **list);void initialize_h3test_error_table_r(struct et_list **list){ struct et_list *et, **end; for (end = list, et = *list; et; end = &et->next, et = et->next) if (et->table->msgs == text) return; et = malloc(sizeof(struct et_list)); if (et == 0) return; et->table = &et_h3test_error_table; et->next = 0; *end = et;}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -