代码搜索:realloc

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

代码结果 1,059
www.eeworm.com/read/16793/691702

c xmalloc.c

/* xmalloc.c -- safe versions of malloc and realloc */ /* Copyright (C) 1991-2009 Free Software Foundation, Inc. This file is part of GNU Bash, the GNU Bourne Again SHell. Bash is free softwa
www.eeworm.com/read/249482/4450357

dat funtc76b.dat

realloc #include #include #include int main(void) { char *str; str= malloc(10); strcpy(str, "Hello"); printf("String is %s Address is %p ",
www.eeworm.com/read/233448/4692475

c hook-allocstuff.c

#include #include int main () { char *foo = (char *) malloc (10); strcpy (foo, "hello"); foo = (char *) realloc (foo, 20); printf ("%s", foo); if (strcmp (foo, "hello")
www.eeworm.com/read/298155/3874510

dat funtc76b.dat

realloc #include #include #include int main(void) { char *str; str= malloc(10); strcpy(str, "Hello"); printf("String is %s Address is %p ",
www.eeworm.com/read/275562/4175106

zc gmem.zc

import "glib/gtypes" public [name="c"] import func g_malloc (gulong): gpointer import func g_malloc0 (gulong): gpointer import func g_realloc (gpointer,gulong): gpointe
www.eeworm.com/read/400494/2352382

h hurdmalloc.h

/* XXX this file is a tempoary hack. All hurd-internal code which uses malloc et al includes this file so it will use the internal malloc routines _hurd_{malloc,realloc,free} instead. The "
www.eeworm.com/read/327863/13058919

cpp 赋值语句的翻译程序设计.cpp

#include #include #include //malloc.exit.realloc.strcmp.gets #include"wordanalysis.h"//词法分析头文件 using namespace std; #define OVERFLOW -2 #define OK 1 #def
www.eeworm.com/read/155317/11885276

c alloc.c

#include #include #include #include /* #define DEBUG */ #ifdef DEBUG #define calloc xcalloc #define malloc xmalloc #define realloc xrealloc #d
www.eeworm.com/read/129561/14238407

hpp memfree.hpp

#ifndef _WINRAR_MEMFREE_ #define _WINRAR_MEMFREE_ #ifndef USE_MEMFREE #define rmalloc malloc #define rcalloc calloc #define rrealloc realloc #define rfree free #define rstrdup strdup #else void* r
www.eeworm.com/read/477840/1357745

c alloc.c

#include #include #include #include /* #define DEBUG */ #ifdef DEBUG #define calloc xcalloc #define malloc xmalloc #define realloc xrealloc #d