📄 stdlib.h
字号:
/* stdlib.h: ANSI draft (X3J11 May 88) library header, section 4.10 */
/* Copyright (C) Codemist Ltd., 1988-1993. */
/* Copyright 1991-1998 ARM Limited. All rights reserved. */
/*
* RCS $Revision: 1.21.2.7 $
* Checkin $Date: 2001/10/19 15:18:20 $
* Revising $Author: cadeniyi $
*/
/*
* stdlib.h declares four types, several general purpose functions,
* and defines several macros.
*/
#ifndef __stdlib_h
#define __stdlib_h
#ifndef __STDLIB_DECLS
#define __STDLIB_DECLS
#undef __CLIBNS
#ifdef __cplusplus
#ifdef __EDG_RUNTIME_USES_NAMESPACES
namespace std {
#define __CLIBNS std::
#else
#define __CLIBNS ::
#endif /* ifdef __EDG_RUNTIME_USES_NAMESPACES */
extern "C" {
#else
#define __CLIBNS
#endif /* __cplusplus */
#if defined(__cplusplus) || !defined(__STRICT_ANSI__)
/* unconditional in C++ and non-strict C for consistency of debug info */
typedef unsigned int size_t;
#elif !defined(__size_t)
#define __size_t 1
typedef unsigned int size_t; /* see <stddef.h> */
#endif
#undef NULL
#define NULL 0 /* see <stddef.h> */
#ifndef __cplusplus /* wchar_t is a builtin type for C++ */
#if !defined(__STRICT_ANSI__)
/* unconditional in non-strict C for consistency of debug info */
typedef unsigned short wchar_t; /* see <stddef.h> */
#elif !defined(__wchar_t)
#define __wchar_t 1
typedef unsigned short wchar_t; /* see <stddef.h> */
#endif
#endif
typedef struct div_t { int quot, rem; } div_t;
/* type of the value returned by the div function. */
typedef struct ldiv_t { long int quot, rem; } ldiv_t;
/* type of the value returned by the ldiv function. */
#ifndef __STRICT_ANSI__
typedef struct lldiv_t { long long quot, rem; } lldiv_t;
/* type of the value returned by the lldiv function. */
#endif
#ifdef __EXIT_FAILURE
# define EXIT_FAILURE __EXIT_FAILURE
/*
* an integral expression which may be used as an argument to the exit
* function to return unsuccessful termination status to the host
* environment.
*/
#else
# define EXIT_FAILURE 1 /* unixoid */
#endif
#define EXIT_SUCCESS 0
/*
* an integral expression which may be used as an argument to the exit
* function to return successful termination status to the host
* environment.
*/
/*
* Defining __USE_ANSI_EXAMPLE_RAND at compile time switches to
* the example implementation of rand() and srand() provided in
* the ANSI C standard. This implementation is very poor, but is
* provided for completeness.
*/
#ifdef __USE_ANSI_EXAMPLE_RAND
#define srand _ANSI_srand
#define rand _ANSI_rand
#define RAND_MAX 0x7fff
#else
#define RAND_MAX 0x7fffffff
#endif
/*
* RAND_MAX: an integral constant expression, the value of which
* is the maximum value returned by the rand function.
*/
#define MB_CUR_MAX 1
/*
* a positive integer expression whose value is the maximum number of bytes
* in a multibyte character for the extended character set specified by the
* current locale (category LC_CTYPE), and whose value is never greater
* than MB_LEN_MAX.
*/
extern double atof(const char * /*nptr*/);
/*
* converts the initial part of the string pointed to by nptr to double
* representation.
* Returns: the converted value.
*/
extern int atoi(const char * /*nptr*/);
/*
* converts the initial part of the string pointed to by nptr to int
* representation.
* Returns: the converted value.
*/
extern long int atol(const char * /*nptr*/);
/*
* converts the initial part of the string pointed to by nptr to long int
* representation.
* Returns: the converted value.
*/
#ifndef __STRICT_ANSI__
extern long long int atoll(const char * /*nptr*/);
/*
* converts the initial part of the string pointed to by nptr to
* long long int representation.
* Returns: the converted value.
*/
#endif
extern double strtod(const char * /*nptr*/, char ** /*endptr*/);
/*
* converts the initial part of the string pointed to by nptr to double
* representation. First it decomposes the input string into three parts:
* an initial, possibly empty, sequence of white-space characters (as
* specified by the isspace function), a subject sequence resembling a
* floating point constant; and a final string of one or more unrecognised
* characters, including the terminating null character of the input string.
* Then it attempts to convert the subject sequence to a floating point
* number, and returns the result. A pointer to the final string is stored
* in the object pointed to by endptr, provided that endptr is not a null
* pointer.
* Returns: the converted value if any. If no conversion could be performed,
* zero is returned. If the correct value is outside the range of
* representable values, plus or minus HUGE_VAL is returned
* (according to the sign of the value), and the value of the macro
* ERANGE is stored in errno. If the correct value would cause
* underflow, zero is returned and the value of the macro ERANGE is
* stored in errno.
*/
extern long int strtol(const char * /*nptr*/, char **/*endptr*/, int /*base*/);
/*
* converts the initial part of the string pointed to by nptr to long int
* representation. First it decomposes the input string into three parts:
* an initial, possibly empty, sequence of white-space characters (as
* specified by the isspace function), a subject sequence resembling an
* integer represented in some radix determined by the value of base, and a
* final string of one or more unrecognised characters, including the
* terminating null character of the input string. Then it attempts to
* convert the subject sequence to an integer, and returns the result.
* If the value of base is 0, the expected form of the subject sequence is
* that of an integer constant (described in ANSI Draft, section 3.1.3.2),
* optionally preceded by a '+' or '-' sign, but not including an integer
* suffix. If the value of base is between 2 and 36, the expected form of
* the subject sequence is a sequence of letters and digits representing an
* integer with the radix specified by base, optionally preceded by a plus
* or minus sign, but not including an integer suffix. The letters from a
* (or A) through z (or Z) are ascribed the values 10 to 35; only letters
* whose ascribed values are less than that of the base are permitted. If
* the value of base is 16, the characters 0x or 0X may optionally precede
* the sequence of letters and digits following the sign if present.
* A pointer to the final string is stored in the object
* pointed to by endptr, provided that endptr is not a null pointer.
* Returns: the converted value if any. If no conversion could be performed,
* zero is returned and nptr is stored in *endptr.
* If the correct value is outside the range of
* representable values, LONG_MAX or LONG_MIN is returned
* (according to the sign of the value), and the value of the
* macro ERANGE is stored in errno.
*/
extern unsigned long int strtoul(const char * /*nptr*/,
char ** /*endptr*/, int /*base*/);
/*
* converts the initial part of the string pointed to by nptr to unsigned
* long int representation. First it decomposes the input string into three
* parts: an initial, possibly empty, sequence of white-space characters (as
* determined by the isspace function), a subject sequence resembling an
* unsigned integer represented in some radix determined by the value of
* base, and a final string of one or more unrecognised characters,
* including the terminating null character of the input string. Then it
* attempts to convert the subject sequence to an unsigned integer, and
* returns the result. If the value of base is zero, the expected form of
* the subject sequence is that of an integer constant (described in ANSI
* Draft, section 3.1.3.2), optionally preceded by a '+' or '-' sign, but
* not including an integer suffix. If the value of base is between 2 and
* 36, the expected form of the subject sequence is a sequence of letters
* and digits representing an integer with the radix specified by base,
* optionally preceded by a '+' or '-' sign, but not including an integer
* suffix. The letters from a (or A) through z (or Z) stand for the values
* 10 to 35; only letters whose ascribed values are less than that of the
* base are permitted. If the value of base is 16, the characters 0x or 0X
* may optionally precede the sequence of letters and digits following the
* sign, if present. A pointer to the final string is stored in the object
* pointed to by endptr, provided that endptr is not a null pointer.
* Returns: the converted value if any. If no conversion could be performed,
* zero is returned and nptr is stored in *endptr.
* If the correct value is outside the range of
* representable values, ULONG_MAX is returned, and the value of
* the macro ERANGE is stored in errno.
*/
#ifndef __STRICT_ANSI__
extern long long int strtoll(const char * /*restrict*/ /*nptr*/,
char ** /*restrict*/ /*endptr*/, int /*base*/);
/*
* as strtol but returns a long long int value. If the correct value is
* outside the range of representable values, LLONG_MAX or LLONG_MIN is
* returned (according to the sign of the value), and the value of the
* macro ERANGE is stored in errno.
*/
extern unsigned long long int strtoull(const char * /*restrict*/ /*nptr*/,
char ** /*restrict*/ /*endptr*/, int /*base*/);
/*
* as strtoul but returns an unsigned long long int value. If the correct
* value is outside the range of representable values, ULLONG_MAX is returned,
* and the value of the macro ERANGE is stored in errno.
*/
#endif
extern int rand(void);
/*
* Computes a sequence of pseudo-random integers in the range 0 to RAND_MAX.
* Uses an additive generator (Mitchell & Moore) of the form:
* Xn = (X[n-24] + X[n-55]) MOD 2^31
* This is described in section 3.2.2 of Knuth, vol 2. It's period is
* in excess of 2^55 and its randomness properties, though unproven, are
* conjectured to be good. Empirical testing since 1958 has shown no flaws.
* Returns: a pseudo-random integer.
*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -