代码搜索:stdlib

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

代码结果 10,000
www.eeworm.com/read/227511/14421705

c base64.c

#include #include #include #include /* Windows special */ char* alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="; char* enc
www.eeworm.com/read/125808/14460326

c lzw.c

/* lzw.c LZW Encoding and Decoding routines for gsLib */ #include #include typedef struct Dictionary { unsigned char character; unsigned short code;
www.eeworm.com/read/226321/14481533

c mcmpfft.c

#include #include #include #include "msp.h" void mcmpfft(complex x[],int n,int isign) { /*--------------------------------------------------------------------- Ro
www.eeworm.com/read/125223/14505585

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/125223/14505586

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/225994/14505806

c setenv.c

/* OPENBSD ORIGINAL: lib/libc/stdlib/setenv.c */ /* * Copyright (c) 1987 Regents of the University of California. * All rights reserved. * * Redistribution and use in source and binary forms, wit
www.eeworm.com/read/225994/14505836

c strtoul.c

/* OPENBSD ORIGINAL: lib/libc/stdlib/strtoul.c */ /* * Copyright (c) 1990 Regents of the University of California. * All rights reserved. * * Redistribution and use in source and binary forms, wi
www.eeworm.com/read/225696/14524780

cpp c16_04.cpp

//多重继承的简单示例 #include #include using namespace std; class A { protected: int a; public: void showa(){ cout
www.eeworm.com/read/225261/14547082

cpp server_c.cpp

//--------------------------------------------------------------------------- #include #include #include #include #include #include
www.eeworm.com/read/224880/14565170

cpp 停车场管理.cpp

#include #include #include /*------------------------------------------------------------------------------*/ #define MAX 2 /*车库容量*/ #define price 2 /*每车每小时费用*/