代码搜索:realloc
找到约 1,059 项符合「realloc」的源代码
代码结果 1,059
www.eeworm.com/read/124347/6052143
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/123322/6060656
c realloc.c
//=================================================================
//
// realloc.c
//
// Testcase for C library realloc()
//
//==========================================================
www.eeworm.com/read/119864/6081540
c realloc.c
/* realloc.c - C standard library routine.
Copyright (c) 1989, 1993 Michael J. Haertel
You may redistribute this library under the terms of the
GNU Library General Public License (version 2
www.eeworm.com/read/116006/6115012
c realloc.c
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// This source code is licensed under Microsoft Shared Source License
// Version 1.0 for Windows CE.
// For a copy of the l
www.eeworm.com/read/106385/6194068
c realloc.c
//=================================================================
//
// realloc.c
//
// Testcase for C library realloc()
//
//==========================================================
www.eeworm.com/read/481239/6645651
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/481045/6656840
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/476355/6757950
c realloc.c
#include
#include
void main(void)
{
char *string, *new_string;
if ((string = (char *) malloc(100)))
{
printf("Successfully allocated a 100 byte st