代码搜索:stdlib

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

代码结果 10,000
www.eeworm.com/read/254811/4380549

c mapstr.c

// mapstr.c -- match abbreviated strings from list // #include #include "mapstr.h" // Find the "best" argument mapping MapItemPtr mapAbbrStr ( MapAbbr szArg, MapItemPt
www.eeworm.com/read/252366/4408748

c malloc.c

/* $Header$ */ /* replace undef by define */ #undef DEBUG /* check assertions */ #undef SLOWDEBUG /* some extra test loops (requires DEBUG) */ #include #include #inc
www.eeworm.com/read/161438/5553284

cpp use_link.cpp

#include #include #include class dblinkob { public: char info; dblinkob *next; dblinkob *previous; dblinkob() { info = 0; next =
www.eeworm.com/read/161438/5553978

c server.c

#define STRICT #include #include "server.h" #include #include #include // clients[] is a global array of
www.eeworm.com/read/158872/5592208

c ptype.c

/* * Test file with lots of different types, for testing the * "ptype" command. */ /* * First the basic C types. */ #include #if !defined (__STDC__) && !defined (_AIX) #define signed
www.eeworm.com/read/155856/5618224

c tst_free.c

#include #include /* for printf */ void tst_free (void) { void * mbuf; printf ("Allocating memory\n"); mbuf = malloc (1000); if (mbuf == NULL)
www.eeworm.com/read/155856/5618225

c tst_malloc.c

#include #include /* for printf */ void tst_malloc (void) { unsigned char xdata *p; p = malloc (1000); /* allocate 1000 bytes */ i
www.eeworm.com/read/474739/6805778

cpp fvsimage.cpp

// This file contains the implementation for FvsImage class #ifndef __FVSIMAGE_IMPLEMENTATION__ #define __FVSIMAGE_IMPLEMENTATION__ #include #include "fvsimage.h" #include "vector.h" //
www.eeworm.com/read/474431/6809253

c bsearch.c

/* ** Demonstrates searching an array of structures with bsearch */ #include #include typedef struct { char key[ 10 ]; /* the sort key for the array */ int other_data;
www.eeworm.com/read/474431/6809256

c qsort.c

/* ** Demonstrates sorting an array of structures with qsort */ #include #include typedef struct { char key[ 10 ]; /* the sort key for the array */ int other_data; /*