代码搜索:stdlib
找到约 10,000 项符合「stdlib」的源代码
代码结果 10,000
www.eeworm.com/read/341877/12056950
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/341877/12057436
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/151532/12203041
txt eras.txt
/*
Copyright zmofun All rights reserved!
http://zmofun.topcool.net
2000.1.14 */
#include
#include
#include
#include
www.eeworm.com/read/253260/12234826
cpp binary.cpp
// binary.cpp -- binary file I/O
#include // not required by most systems
#include
#include
#include // (or stdlib.h) for exit()
inline void eatline()
www.eeworm.com/read/253260/12235549
cpp binary.cpp
// binary.cpp -- binary file I/O
#include // not required by most systems
#include
#include
#include // (or stdlib.h) for exit()
inline void eatline()
www.eeworm.com/read/339355/12241611
cpp 参考程序.cpp
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
www.eeworm.com/read/339324/12242591
h ftchartoglyphindexmap.h
#ifndef __FTCharToGlyphIndexMap__
#define __FTCharToGlyphIndexMap__
#include
#include "FTGL.h"
/**
* Provides a non-STL alternative to the STL map
*
www.eeworm.com/read/150909/12246554
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/150859/12255719
c mcmpfft.c
#include
#include
#include
#include "msp.h"
void mcmpfft(complex x[],int n,int isign)
{
/*---------------------------------------------------------------------
Ro
www.eeworm.com/read/339127/12256404
h avl.h
#include "AvlTree.h"
#include
#include
using namespace std;
struct AvlNode
{
ElementType Element;
AvlTree Left;
AvlTree Right;
int Height;
};
AvlTree Ma