代码搜索:realloc
找到约 1,059 项符合「realloc」的源代码
代码结果 1,059
www.eeworm.com/read/235304/14075280
c xmalloc.c
/* xmalloc.c -- safe versions of malloc and realloc */
/* Copyright (C) 1991 Free Software Foundation, Inc.
This file is part of GNU Readline, a library for reading lines
of text with interact
www.eeworm.com/read/100263/15879578
c xmalloc.c
/* xmalloc.c -- safe versions of malloc and realloc */
/* Copyright (C) 1991 Free Software Foundation, Inc.
This file is part of GNU Readline, a library for reading lines
of text with interact
www.eeworm.com/read/386242/8760518
c cmbtest.c
/* COMBI-Disk demonstration/test program
* by Vadim V. Vlasov, Moscow, 1991, 1992.
*
* This program may be used to test the reliability of COMBI-disk strategy of
* memory realloc
www.eeworm.com/read/223273/14648606
c main.c
#include"global.h"
#include"controlmodule.h"
#include"parser.h"
//////////////////////////////////////////////////////
void * xrealloc( void *ptr , int size){
void *p=realloc(ptr,size);
if(p==NULL)
www.eeworm.com/read/16793/690783
c xmalloc.c
/* xmalloc.c -- safe versions of malloc and realloc */
/* Copyright (C) 1991-2009 Free Software Foundation, Inc.
This file is part of the GNU Readline Library (Readline), a library
for reading
www.eeworm.com/read/233522/4667767
hhh vcl_cstdlib.hhh
@abs
@div
@labs
@ldiv
@srand
@rand
@atexit
@getenv
@system
@exit
@abort
@qsort
@calloc
@malloc
@free
@realloc
@atol
@atof
@atoi
@mblen
@mbstowcs
@mbtowc
@strtod
@strtol
@strtou
www.eeworm.com/read/216450/4894099
c kmalloc.c
/* malloc(), realloc(), free() - simple memory allocation routines
*
* This is a very small and simple minded malloc Author: Kees J. Bot
* implementation. Ideal for things like a 29 Jan 1994
*
www.eeworm.com/read/351636/3101924
hhh vcl_cstdlib.hhh
@abs
@div
@labs
@ldiv
@srand
@rand
@atexit
@getenv
@system
@exit
@abort
@qsort
@calloc
@malloc
@free
@realloc
@atol
@atof
@atoi
@mblen
@mbstowcs
@mbtowc
@strtod
@strtol
@strtou
www.eeworm.com/read/238844/13320698
c smpar.c
/* extern char *malloc(), *realloc(); */
/* file: SMPAR.C - from SMIB.Y - Parser for Concise MIB and Concise Traps
*
*/
#include
#include
#include
www.eeworm.com/read/147331/5732710
c mallocr.c
#ifdef MALLOC_PROVIDED
int _dummy_mallocr = 1;
#else
/* ---------- To make a malloc.h, start cutting here ------------ */
/*
A version of malloc/free/realloc written by Doug Lea and released to th