代码搜索:stdlib

找到约 10,000 项符合「stdlib」的源代码

代码结果 10,000
www.eeworm.com/read/155168/11892607

h stdlib.h

/*****************************************************************************/ /* stdlib.h v4.1.0 */ /* Copyright (c) 1993-2005 Texas Instr
www.eeworm.com/read/155143/11895567

h stdlib.h

#ifndef _STDLIB_H_ #define _STDLIB_H_ #include "sys/reent.h" typedef struct { int quot; /* quotient */ int rem; /* remainder */ } div_t; typedef struct { long quot; /* quotie
www.eeworm.com/read/153763/12008577

h stdlib.h

/* F2MC-16 Family C Library V30L10 */ /* COPYRIGHT(C) FUJITSU LIMITED 1986 */ #ifndef __STDLIB_H__ #define __STDLIB_H__ #include #if !defined(EXIT_FAILURE) #define EXIT_F
www.eeworm.com/read/153733/12010576

c stdlib.c

/* strlen(s) isspace(c) putchar(c) puts(s) bcmp(s1, s2, n) bcopy(src, dst, n) -------------------------------------------------------------- Simple implementations of the corresponding ISO
www.eeworm.com/read/153733/12010595

h stdlib.h

#ifndef stdlib_h_included #define stdlib_h_included #include "stdarg.h" int putchar(int c); int puts(const char* str); int bcmp(const void* s1, const void* s2, int n); void bcopy(const void* str,
www.eeworm.com/read/153630/12017936

gif stdlib.gif

www.eeworm.com/read/256116/12027184

h stdlib.h

www.eeworm.com/read/255721/12062197

h stdlib.h

#pragma force_top_level #pragma include_only_once /* stdlib.h: ANSI draft (X3J11 May 88) library header, section 4.10 */ /* Copyright (C) Codemist Ltd., 1988-1993. */ /*
www.eeworm.com/read/152785/12084806

h stdlib.h

/* * stdlib.h * * Definitions for common types, variables, and functions. */ #ifndef _STDLIB_H_ #ifdef __cplusplus extern "C" { #endif #define _STDLIB_H_ #include "_ansi.h" #define __need_size_
www.eeworm.com/read/152752/12088719

h stdlib.h

#ifndef __STDLIB #define __STDLIB #define EXIT_FAILURE 1 #define EXIT_SUCCESS 0 #define MB_CUR_MAX 1 #ifndef NULL #define NULL ((void*)0) #endif #define RAND_MAX 32767 typedef struct { in