代码搜索:stdlib
找到约 10,000 项符合「stdlib」的源代码
代码结果 10,000
www.eeworm.com/read/131716/14132223
h my_malloc.h
#include
typedef long Align; /* for alignment to long boundary */
union header { /* block header: */
struct {
union header *next; /* next block if on Free list */
unsigned int siz
www.eeworm.com/read/232738/14183836
cpp llmain.cpp
#include
#include
#include
#include
#include
/******************************************************************
This example demonstrates, how
www.eeworm.com/read/130553/14186560
c scrnsave.c
/*
** SCRNSAVE.C - Save and restore text screen portably
**
** public domain demo by Bob Stout
*/
#include
/*
** Stuff from SNIPPETS courtesy of Jim Nutt
**
** Notes: VIOop
www.eeworm.com/read/130553/14186992
c do.c
/*
** DO.C - a simple facility for specifying multiple commands
*/
#include
#include
void main(int argc, char *argv[])
{
if (2 > argc)
{
puts
www.eeworm.com/read/130396/14195469
cpp dllfft.cpp
//---------------------------------------------------------------------------
#include
#include
#include "math.h"
#include "stdio.h"
#include "stdlib.h"
const float pi=3.
www.eeworm.com/read/129726/14231242
c lsearch.c
/* lsearch example */
#include
#include
#include /* for strcmp declaration */
/* initialize number of colors */
char *colors[10] = { "Red", "Blue", "Green"
www.eeworm.com/read/129337/14250611
c import2.c
/*
This is an important file for managing the project.
It implements the canoncial "Hello World" program.
*/
#include
#include
int main()
{
printf("Hello World\n");
www.eeworm.com/read/129337/14250636
c import1.c
/*
This is an important file for managing the project.
It implements the canoncial "Hello World" program.
*/
#include
#include
int main()
{
printf("Hello World\n");
www.eeworm.com/read/230642/14280065
c spikbd.c
/************************
SPI0 Keyboard Test
************************/
// created, 2004.05.14, jylee
#include
#include
#include
#include "def.h"
#incl
www.eeworm.com/read/128628/14286146
cpp use_link.cpp
#include
#include
#include
class dblinkob {
public:
char info;
dblinkob *next;
dblinkob *previous;
dblinkob() {
info = 0;
next =