代码搜索:malloc
找到约 10,000 项符合「malloc」的源代码
代码结果 10,000
www.eeworm.com/read/258615/4353453
c malloc.c
/*-----------------------------------------------------------------------------
MALLOC.C is part of the C51 Compiler package from Keil Software.
Copyright (c) 1995-2002 Keil Software. All rights re
www.eeworm.com/read/258249/4357891
h malloc.h
/* malloc.h - Quipu specific mallocing */
/*
* $Header: /xtel/isode/isode/h/quipu/RCS/malloc.h,v 9.0 1992/06/16 12:23:11 isode Rel $
*
*
* $Log: malloc.h,v $
* Revision 9.0 1992/06/16 12:23:
www.eeworm.com/read/257673/4361596
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/255218/4378870
h malloc.h
/*
* malloc.h
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER wit
www.eeworm.com/read/253727/4392481
c malloc.c
/*-----------------------------------------------------------------------------
MALLOC.C is part of the C51 Compiler package from Keil Software.
Copyright (c) 1995-2002 Keil Software. All rights re
www.eeworm.com/read/252366/4408748
c malloc.c
/* $Header$ */
/* replace undef by define */
#undef DEBUG /* check assertions */
#undef SLOWDEBUG /* some extra test loops (requires DEBUG) */
#include
#include
#inc
www.eeworm.com/read/162614/5540660
h malloc.h
/* DO NOT EDIT THIS FILE.
It has been auto-edited by fixincludes from:
"fixinc/tests/inc/malloc.h"
This had to be done to correct non-standard usages in the
original, manufacturer sup
www.eeworm.com/read/162574/5540724
h malloc.h
/* MShowTec - www.mshowtec.com
** msLinux malloc.h ver1.0
** 20051221 lmjx create limiao@mshowtec.com
**
*/
#ifndef MSLINUX_MALLOC_H
#define MSLINUX_MALLOC_H
void free(void*p);
void *mall
www.eeworm.com/read/162574/5540728
c malloc.c
/* MShowTec - www.mshowtec.com
** msLinux malloc.c ver1.0
** 20051221 lmjx create limiao@mshowtec.com
**
*/
#define MSLINUX_MALLOC_C
#include "memory.h"
#include "malloc.h"
void *malloc
www.eeworm.com/read/161438/5553060
c malloc.c
#include
#include
void main(void)
{
char *string;
int *int_values;
float *float_values;
if ((string = (char *) malloc(50)))
printf("Successfully alloc