stdfunc.h
来自「一个两碟控制的VCD的代码,两碟之间的转动及连续播放,已大量生产的CODE.」· C头文件 代码 · 共 38 行
H
38 行
/*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 + =
减小字号Ctrl + -
显示快捷键?