代码搜索:malloc

找到约 10,000 项符合「malloc」的源代码

代码结果 10,000
www.eeworm.com/read/162511/10300352

c malloc.c

/* Implementation of the MALLOC and FREE intrinsics Copyright (C) 2005 Free Software Foundation, Inc. Contributed by François-Xavier Coudert This file is part of the GN
www.eeworm.com/read/355007/10305500

c malloc.c

#include #include void main(void) { char *string; int *int_values; float *float_values; if ((string = (char *) malloc(50))) printf("Successfully alloc
www.eeworm.com/read/162128/10333412

c malloc.c

#include #include void main(void) { char *string; int *int_values; float *float_values; if ((string = (char *) malloc(50))) printf("Successfully alloc
www.eeworm.com/read/162078/10336931

c malloc.c

#include #include void main(void) { char *string; int *int_values; float *float_values; if ((string = (char *) malloc(50))) printf("Successfully alloc
www.eeworm.com/read/280060/10357853

h malloc.h

/* malloc.h memory management functions and variables. Copyright (c) 1991, 1992 by Borland International All Rights Reserved. */ #include #if defined(__TINY__) ||
www.eeworm.com/read/354342/10362375

c malloc.c

/* * malloc.c --- a general purpose kernel memory allocator for Linux. * * Written by Theodore Ts'o (tytso@mit.edu), 11/29/91 * * This routine is written to be as fast as possible, so that it *
www.eeworm.com/read/161772/10376000

exe malloc.exe

www.eeworm.com/read/161772/10376044

c malloc.c

/* Using malloc() to determine free memory.*/ #include #include /* Definition of a structure that is 1024 bytes (1 kilobyte) in size.) */ struct kilo { struct ki
www.eeworm.com/read/161772/10376717

exe malloc.exe

www.eeworm.com/read/161772/10376750

c malloc.c

#include #include int main( void ) { /* allocate memory for a 100-character string */ char *str; str = (char *) malloc(100); if (str == NULL) { print