代码搜索:malloc
找到约 10,000 项符合「malloc」的源代码
代码结果 10,000
www.eeworm.com/read/366524/9810396
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/365713/9850086
c malloc.c
/* dynamic memory allocation for GNU.
Copyright (C) 1985, 1987 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of
www.eeworm.com/read/365428/9863652
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
* can be
www.eeworm.com/read/365033/9880997
h malloc.h
www.eeworm.com/read/365033/9881190
h malloc.h
www.eeworm.com/read/168863/9891215
c malloc.c
/*-----------------------------------------------------------------------------
MALLOC.C is part of the C51 Compiler package from Keil Software.
Copyright (c) 1995-1999 Keil Software. All rights re
www.eeworm.com/read/363449/9950693
h malloc.h
/* malloc.h
memory management functions and variables.
Copyright (c) 1991 by Borland International
All Rights Reserved.
*/
#if !defined(__MALLOC_H)
#define __MALLOC_H
#if !
www.eeworm.com/read/166778/9998697
c malloc.c
/* malloc() function that is glibc compatible.
Copyright (C) 1997, 1998 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms
www.eeworm.com/read/166455/10019725
c malloc.c
www.eeworm.com/read/166455/10019883