代码搜索:stdlib

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

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

c setbuf.c

#include #include void main() { char *buffer; FILE *fp; fp = fopen( "file", "r" ); buffer = (char *) malloc( BUFSIZ ); setbuf( fp, buffer );
www.eeworm.com/read/229812/4744829

c tempnam.c

#include #include /* Environment variable TMP=C:\WINDOWS\TEMP */ void main() { char *filename; FILE *fp; filename = _tempnam( "D:\\TEMP", "_T" );
www.eeworm.com/read/229812/4750601

gml min.gml

.func min #include #define min(a,b) (((a) < (b)) ? (a) : (b)) .funcend .desc begin The &func macro will evaluate to be the lesser of two values. It is implemented as follows. .millu
www.eeworm.com/read/229812/4750889

gml max.gml

.func max #include #define max(a,b) (((a) > (b)) ? (a) : (b)) .funcend .desc begin The &func macro will evaluate to be the greater of two values. It is implemented as follows. .mill
www.eeworm.com/read/220922/4838563

c server.c

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

c lager2.c

#include #include #include struct lagerverwaltung { long artikelnummer; char artikelbezeichnung[100]; int anzahl_artikel; struct l
www.eeworm.com/read/219395/4848311

c lager3.c

#include #include #include struct lagerverwaltung { long artikelnummer; char artikelbezeichnung[100]; int anzahl_artikel; struct l
www.eeworm.com/read/219395/4848312

c lager4.c

#include #include #include struct lagerverwaltung { long artikelnummer; char artikelbezeichnung[100]; int anzahl_artikel; struct l
www.eeworm.com/read/219395/4848313

c lager1.c

#include #include #include struct lagerverwaltung { long artikelnummer; char artikelbezeichnung[100]; int anzahl_artikel; struct l
www.eeworm.com/read/219395/4848320

c lager_final.c

#include #include #include struct lagerverwaltung { long artikelnummer; char artikelbezeichnung[100]; int anzahl_artikel; struct l