代码搜索:Buffer
找到约 10,000 项符合「Buffer」的源代码
代码结果 10,000
www.eeworm.com/read/352688/10523993
c buffer.c
/*
* Boa, an http server
* Copyright (C) 1995 Paul Phillips
* Some changes Copyright (C) 1999 Jon Nelson
* This program is free software; you can redistri
www.eeworm.com/read/352688/10524134
o buffer.o
www.eeworm.com/read/423658/10539075
cpp buffer.cpp
#include "buffer.h"
buffer* buffer_init()
{
buffer *buf;
buf = (buffer *)calloc(sizeof(buffer), 1);
if(!buf)
return NULL;
buf->length = 0;
buf->ptr = NULL;
return buf;
}
www.eeworm.com/read/423658/10539080
h buffer.h
#ifndef __HZL_BUFFER_H__
#define __HZL_BUFFER_H__
#include
#include
#include
typedef struct{
char *ptr;
size_t length;
} buffer;
buffer* buffer_init
www.eeworm.com/read/351971/10589840
c buffer.c
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// This source code is licensed under Microsoft Shared Source License
// Version 1.0 for Windows CE.
// For a copy of the l
www.eeworm.com/read/159625/10632715
c buffer.c
/*
* linux/fs/buffer.c
*
* (C) 1991 Linus Torvalds
*/
/*
* 'buffer.c' implements the buffer-cache functions. Race-conditions have
* been avoided by NEVER letting a interrupt change a buffer
www.eeworm.com/read/159441/10648302
c buffer.c
/*
* buffer.c
* Manages data reading and caching.
*
* Copyright (c) 2003 Christoph Pfisterer
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software
www.eeworm.com/read/277145/10659620
c buffer.c
/* this file is a part of amp software
buffer.c: written by Andrew Richards
(except printout())
Last modified by:
Karl Anders Oygard a
www.eeworm.com/read/421949/10676074