代码搜索:stdlib

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

代码结果 10,000
www.eeworm.com/read/340665/3274133

c inherit2.c

// Build don't link: #include class A { public: void z(); A(void) {} private: A(const A &) { abort(); } // ERROR - const A& operator =(const A &) { abort(); } }; class B : public
www.eeworm.com/read/331291/3414302

c server.c

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

c test_for_i.c

#include #include #include void main(){ int i=0; for (;i
www.eeworm.com/read/328421/3443580

cpp generateexam.cpp

// GenerateExam.cpp : Implementation of CGenerateExam #include "stdafx.h" #include "EXAM.h" #include "GenerateExam.h" #include "time.h" #include "stdlib.h" //////////////////////////////////
www.eeworm.com/read/325240/3486094

cpp jniarraywrapperimpl.cpp

// JNIArrayWrapperImpl.cpp // Implements the header created by java to integrate with JNI // Creates a new array of random integers and returns it to java. // C++ core header #include
www.eeworm.com/read/322306/3526331

h local.h

/* Misc. local definitions for libc/stdlib */ #ifndef _LOCAL_H_ #define _LOCAL_H_ char * _EXFUN(_gcvt,(struct _reent *, double , int , char *, char, int)); #endif
www.eeworm.com/read/322306/3526336

c mblen.c

#include int _DEFUN (mblen, (s, n), const char *s _AND size_t n) { if (s == NULL || *s == '\0') return 0; if (n == 0) retur
www.eeworm.com/read/322306/3526348

in makefile.in

# Makefile for newlib/libc/stdlib. # Copyright (c) 1994 Cygnus Support. # All rights reserved. # # Redistribution and use in source and binary forms are permitted # provided that the above copyright n
www.eeworm.com/read/319072/3558923

c server.c

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

c tst_free.c

#include #include /* for printf */ void tst_free (void) { void * mbuf; printf ("Allocating memory\n"); mbuf = malloc (1000); if (mbuf == NULL)