代码搜索:realloc

找到约 1,059 项符合「realloc」的源代码

代码结果 1,059
www.eeworm.com/read/316094/13530290

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/315631/13539384

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/308442/13701122

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/304114/13800161

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/301198/13863914

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/147331/5731482

c realloc.c

/* dummy file to override one object in stdlib directory */
www.eeworm.com/read/147331/5732697

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/137654/5822508

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/136072/5874905

c realloc.c

/* * libc/stdlib/malloc/realloc.c -- realloc function * * Copyright (C) 2002 NEC Corporation * Copyright (C) 2002 Miles Bader * * This file is subject to the terms and condit
www.eeworm.com/read/136072/5874917

c realloc.c

/* This is a version (aka dlmalloc) of malloc/free/realloc written by Doug Lea and released to the public domain. Use, modify, and redistribute this code without permission or acknowledgement i