代码搜索:malloc
找到约 10,000 项符合「malloc」的源代码
代码结果 10,000
www.eeworm.com/read/441132/7675627
c fake-getaddrinfo.c
/*
* fake library for ssh
*
* This file includes getaddrinfo(), freeaddrinfo() and gai_strerror().
* These funtions are defined in rfc2133.
*
* But these functions are not implemented correctly.
www.eeworm.com/read/433846/7906425
y simple.y
%{
#include
#include
#include
#include "tree.h"
#define YYDEBUG 1
A_program theprogram ;
A_declarations thedecls;
A_commands thecommands;
A_commands else_
www.eeworm.com/read/198320/7940330
c 习题01-建立单链表(1).c
#include "datastru.h"
#include
#include
int count_nohead(LINKLIST *head){
/*不带头结点的单链表:输出单链表元素值并计数*/
int i = 0;
LINKLIST *p;
p = head;
printf("输出单链表元素值 : ");
www.eeworm.com/read/198320/7940336
c 习题10-两链表并集.c
#include "datastru.h"
#include
#include
int locate(LINKLIST *a,char x)
/*检查元素x是否在a表中*/
{LINKLIST *la;
la = a->next;
while(la !=NULL)
if(la->data == x) return 1;
www.eeworm.com/read/198320/7940347
c 习题06-有序链表插入元素.c
#include "datastru.h"
#include
#include
inser_order(DATATYPE2 x, LINKLIST *head){
/*将给定值x插入有序表中,并保持有序*/
LINKLIST *pr, *pn, *pp;
pr = head; pn = head->next;
whi
www.eeworm.com/read/198320/7940351
c 习题03-建立单链表(3).c
#include "datastru.h"
#include
#include
int count_nohead(LINKLIST *head){
/*不带头结点的单链表:输出单链表元素值并计数*/
int i = 0;
LINKLIST *p;
p = head;
printf("输出单链表元素值 : ");
www.eeworm.com/read/198320/7940376
c 习题02-建立单链表(2).c
#include "datastru.h"
#include
#include
int count_head(LINKLIST *head){
/*带头结点的单链表:输出单链表元素值并计数*/
int i = 0;
LINKLIST *p;
p = head->next;
printf("输出单链表元素值 : ")
www.eeworm.com/read/198320/7940381
c 习题04-建立单链表(4).c
#include "datastru.h"
#include
#include
int count_head(LINKLIST *head){
/*带头结点的单链表: 输出单链表元素值并计数*/
int i = 0;
LINKLIST *p;
p = head->next;
printf("输出单链表元素值 : "
www.eeworm.com/read/297635/8007389
cpp tmndec.cpp
////////////////////////////////////////////////////////////////////////////
//
//
// Project : VideoNet version 1.1.
// Description : Peer to Peer Video Conferencing over the LAN.
//
www.eeworm.com/read/297630/8007767
cpp tmndec.cpp
////////////////////////////////////////////////////////////////////////////
//
//
// Project : VideoNet version 1.1.
// Description : Peer to Peer Video Conferencing over the LAN.
//