代码搜索:stdlib

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

代码结果 10,000
www.eeworm.com/read/229812/4744055

c bitmaps.c

#include #include "life.h" #include "bitmap.h" static HBITMAP CellBitMap = NULL; static HDC MemoryDC; extern void InitBitMap() /**********************
www.eeworm.com/read/229812/4744189

c getenv.c

#include #include void main() { char *path; path = getenv( "INCLUDE" ); if( path != NULL ) printf( "INCLUDE=%s\n", path ); }
www.eeworm.com/read/229812/4744830

c system.c

#include #include void main() { int rc; rc = system( "dir" ); if( rc != 0 ) { printf( "shell could not be run\n" ); } }
www.eeworm.com/read/216802/4880930

c initterm.c

#include /* * @implemented */ void _initterm(void (*fStart[])(void), void (*fEnd[])(void)) { int i = 0; if ( fStart == NULL || fEnd == NULL ) return; while
www.eeworm.com/read/216802/4880970

c witoa.c

/* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS system libraries * FILE: lib/msvcrt/stdlib/itoa.c * PURPOSE: converts a integer to ascii * PROGRAME
www.eeworm.com/read/216802/4880979

c rot.c

/* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS system libraries * FILE: lib/msvcrt/stdlib/rot.c * PURPOSE: Performs a bitwise rotation * PROGRAMER
www.eeworm.com/read/216802/4880985

c itoa.c

/* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS system libraries * FILE: lib/msvcrt/stdlib/itoa.c * PURPOSE: converts a integer to ascii * PROGRAME
www.eeworm.com/read/213308/4917521

c smiltest.c

//< smiltest.c > #include //#include #include #include "common.h" /***************************************************************************/ void DispTitle(void
www.eeworm.com/read/209211/4985027

c main.c

#include #include int yylex(void); void main(int argc, char *argv[]) { USED(argc); yylex(); exit(0); }
www.eeworm.com/read/205824/5015815

c initterm.c

#include /* * @implemented */ void _initterm(void (*fStart[])(void), void (*fEnd[])(void)) { int i = 0; if ( fStart == NULL || fEnd == NULL ) return; while