⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stdlib.h

📁 vc环境下的pgp源码
💻 H
字号:
/* @(#) stdlib.h 1.1 92/02/15 17:25:45 */

#ifndef _stdlib_h_
#define _stdlib_h_

/* NULL is also defined in <stdio.h> */

#ifndef NULL
#define NULL	0
#endif

/*
 * Some functions in this file will be missing from the typical pre-ANSI
 * UNIX library. Some pre-ANSI UNIX library functions have return types
 * that differ from what ANSI requires.
 */

extern double atof();
extern int atoi();
extern long atol();
extern double strtod();
extern long strtol();
extern unsigned long strtoul();
extern int rand();
extern void srand();
extern char *calloc();
extern char *malloc();
extern char *realloc();
extern void free();
extern void abort();
extern void exit();
extern int atextit();
extern int system();
extern char *getenv();
extern char *bsearch();
extern void qsort();
extern int abs();
extern long labs();

typedef struct {
    int     quot;
    int     rem;
} div_t;

typedef struct {
    long    quot;
    long    rem;
} ldiv_t;

extern div_t div();
extern ldiv_t ldiv();

#endif /* _stdlib_h_ */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -