stdlib.h

来自「test file nucleus source」· C头文件 代码 · 共 93 行

H
93
字号
/***************************************************************************               Copyright Mentor Graphics Corporation 2002              *                         All Rights Reserved.                          *                                                                       * THIS WORK CONTAINS TRADE SECRET AND PROPRIETARY INFORMATION WHICH IS  * THE PROPERTY OF MENTOR GRAPHICS CORPORATION OR ITS LICENSORS AND IS   * SUBJECT TO LICENSE TERMS.                                             **************************************************************************//*************************************************************************** FILENAME                                      VERSION**       STDLIB.H                             Nucleus NCL 1.1** DESCRIPTION**       Standard library include file** DATA STRUCTURES**       none** DEPENDENCIES**       ncl.h**************************************************************************/#ifndef STDLIB_H#define STDLIB_H#ifdef          __cplusplusextern  "C" {                               /* C declarations in C++     */#endif#define NU_NCL_SOURCE_FILE#include "ncl\inc\ncl.h"#include "plus\nucleus.h"/**************************************************************************   size_t      Unsigned integral type of the result of sizeof*   wchar_t     Integral type which can represent all characters in any*                 supported extended character set*   NULL        Null pointer constant*************************************************************************/typedef unsigned int    size_t;#ifndef NULL#define NULL        (void *)0#endif /* NULL */#define RAND_MAX    32767 /* maximum value returned by random functions */#ifdef _INTBITSint     NCL_atoi(const char *);long    NCL_atol(const char *);char*   NCL_itoa(int, char*, int);char*   NCL_ltoa(long, char*, int);char*   NCL_ultoa(unsigned long, char *, int);void    numbertoaWorker(unsigned long, char *, int, BOOLEAN);int		NCL_stricmp(const char*, const char*);long    NCL_strtol(const char *, char **, int);unsigned long NCL_strtoul(const char *, char **, int);int     NCL_rand(void);void    NCL_srand(unsigned);#else /* _INTBITS */int     NCL_atoi();long    NCL_atol();long    NCL_strtol();int     NCL_rand();unsigned long NCL_strtoul();#endif /* _INTBITS */#undef NU_NCL_SOURCE_FILE#ifdef          __cplusplus}                                           /* End of C declarations     */#endif#endif /* STDLIB_H */

⌨️ 快捷键说明

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