代码搜索:malloc
找到约 10,000 项符合「malloc」的源代码
代码结果 10,000
www.eeworm.com/read/418919/10891676
c cesar_codifica.c
#include
#include
//prototipo de la funcion de cifrado
void cesar_cifrado(int llave, const char *textoplano, char *textocifrado);
/*********************************************
www.eeworm.com/read/418361/10951143
c check_mapbrk.c
#include
#include
/* Basic sanity check that syscalls to implement malloc (brk, mmap2,
munmap) are trivially functional. */
int main ()
{
void *p1, *p2, *p3, *p4, *p5, *p6
www.eeworm.com/read/271877/10977167
c bufalloc.c
#include
void *bufalloc(size_t *size, size_t minsize)
{
void *buffer;
size_t bufsize;
for (bufsize = *size; bufsize >= minsize && !(buffer = malloc(bufsize)); bufsi
www.eeworm.com/read/271634/10986045
cpp examine_user_name.cpp
#include"acridine.h"
#include"string.h"
#include"malloc.h"
#include"iostream.h"
void save(user *yonghu);//把从实参传过来的结点信息写进文件
void free_user_link(member &head);//清空会员链表
int jiance(user *yonghu0,i
www.eeworm.com/read/417462/10988520
c chk_disk.c
#include
#include
#include
void main(void)
{
struct fatinfo fat;
long sector, total_sectors;
void *buffer;
getfat(3, &fat);
total_sectors = fa
www.eeworm.com/read/271450/10994714
cpp memcheck.cpp
//: C26:MemCheck.cpp {O}
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Memory allocation test
www.eeworm.com/read/270312/11042449
h stdlib.h
/*--------------------------------------------------------------------------
STDLIB.H
Standard functions.
Copyright (c) 1988-2002 Keil Elektronik GmbH and Keil Software, Inc.
All rights reserved.
---
www.eeworm.com/read/470033/6923146
c chk_disk.c
#include
#include
#include
void main(void)
{
struct fatinfo fat;
long sector, total_sectors;
void *buffer;
getfat(3, &fat);
total_sectors = fa
www.eeworm.com/read/470033/6923304
c chk_disk.c
#include
#include
#include
void main(void)
{
struct fatinfo fat;
long sector, total_sectors;
void *buffer;
getfat(3, &fat);
total_sectors = fa
www.eeworm.com/read/110990/6935542
c hfalloc.c
#include "handsfree_private.h"
#include "handsfree.h"
#include
#include
/*
hfAlloc
Try allocating some memory and cause a Panic if its not allocated.
*/
vo