📄 sysfunc.h
字号:
/* File: sysfunctions.h */#ifndef __STDC__/* C Library functions */ extern char *index(), *rindex();extern double atof();extern long atol(), ftell();extern int atoi();#else#include <stdlib.h>#endif/* Support library functions */int spx_read_header();struct field_t **spx_get_field_vector();int spx_copy_field_vector();struct header_t *spx_allocate_header();int spx_deallocate_header();struct field_t *spx_allocate_field();struct field_t *spx_allocate_field_str();int spx_deallocate_field();int spx_tp();
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -