?? stdfunc.h
字號:
/*SCCSID @(#)stdfunc.h 1.5 12/18/97 */
#ifndef STDFUNC_INCLUDE_H
#define STDFUNC_INCLUDE_H
int findfile(char *filename, int dir_flag);
int findfilebynumber(int k);
char *read_file();
void init_dir(void *p, int l, int s);
int read_sectors(int loc, int nsct, char *buf, int flag);
int strlen(const char *s);
int strcmp(const char *s1, const char *s2);
int strncmp(const char *s1, const char *s2, int n);
int gx_strtol(char *p, char **e, int base);
char *strcpy(char *d, const char *s);
char *strncpy(char *d, const char *s, int n);
int sprint_d(char *buf, int i);
unsigned int get_int32(unsigned char *p);
/* gxmalloc.c */
void init_GX_malloc();
char *GX_malloc(int nbytes);
void GX_free(void *p);
#ifdef DEBUG
void delay(int n);
void malloc_check();
int TVprintf(char *fmt, ...);
#if 0
void myprintc(char c);
void myprints(char *str);
void myprintn(unsigned long int n);
#endif
#endif
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -