代码搜索:realloc
找到约 1,059 项符合「realloc」的源代码
代码结果 1,059
www.eeworm.com/read/282272/4106397
c realloc.c
#include
#include
void main(void)
{
char *string, *new_string;
if ((string = (char *) malloc(100)))
{
printf("Successfully allocated a 100 byte st
www.eeworm.com/read/279968/4129637
c realloc.c
/* dummy file to override one object in stdlib directory */
www.eeworm.com/read/279968/4131124
c realloc.c
#ifdef MALLOC_PROVIDED
int _dummy_calloc = 1;
#else
/* realloc.c -- a wrapper for realloc_r. */
#include
#include
#include
#include
#ifndef _REENT_ONLY
_P
www.eeworm.com/read/275471/4176436
c realloc.c
/*-----------------------------------------------------------------------------
REALLOC.C is part of the C51 Compiler package from Keil Software.
Copyright (c) 1995-1999 Keil Software. All rights r
www.eeworm.com/read/275152/4179792
c realloc.c
/*-----------------------------------------------------------------------------
REALLOC.C is part of the C51 Compiler package from Keil Software.
Copyright (c) 1995-2002 Keil Software. All rights r
www.eeworm.com/read/440906/1775350
c realloc.c
// Build don't link:
extern "C" void realloc();
class bug {
public:
void realloc(int foo,int bar);
};
void f() {
bug c;
c.realloc(50,50);
}
www.eeworm.com/read/438718/1822640
c realloc.c
#include "config.h"
#include
#include
#include
void * MemRealloc(void * p, UInt32 size);
#ifndef USE_DLMALLOC
extern long malloc_ref_count;
extern long by
www.eeworm.com/read/400494/2350446
c realloc.c
/* Change the size of a block allocated by `malloc'.
Copyright 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
Written May 1989 by Mike Haertel.
This library is free software; y
www.eeworm.com/read/400297/2353497
c realloc.c
/*-----------------------------------------------------------------------------
REALLOC.C is part of the C51 Compiler package from Keil Software.
Copyright (c) 1995-1999 Keil Software. All rights r
www.eeworm.com/read/398200/2383561
c realloc.c
//=================================================================
//
// realloc.c
//
// Testcase for C library realloc()
//
//==========================================================