代码搜索:stdlib
找到约 10,000 项符合「stdlib」的源代码
代码结果 10,000
www.eeworm.com/read/225994/14505860
c realpath.c
/* OPENBSD ORIGINAL: lib/libc/stdlib/realpath.c */
/*
* Copyright (c) 1994
* The Regents of the University of California. All rights reserved.
*
* This code is derived from software contributed
www.eeworm.com/read/124884/14529544
c example.c
#include
#include
#include
#include
#include
/*---------------------------------------------------------------
-
- EXAMPLExxx where xxx i
www.eeworm.com/read/123453/14631738
c wapbox.c
/*
* wapbox.c - main program for wapbox
*
* This module contains the main program for the WAP box of the WAP gateway.
* See the architecture documentation for details.
*/
#include
#in
www.eeworm.com/read/123453/14632448
c wapbox.c
/*
* wapbox.c - main program for wapbox
*
* This module contains the main program for the WAP box of the WAP gateway.
* See the architecture documentation for details.
*/
#include
#in
www.eeworm.com/read/123273/14639926
c 2.c
#include
#include
struct queueNode { /*自引用结构*/
int data;
struct queueNode *nextPtr;
};
typedef struct queueNode QUEUENODE;
typedef QUEUENODE
www.eeworm.com/read/223007/14664870
c char_cat.c
/*
** Compute the percentage of characters read from the standard
** input that are in each of several character categories.
*/
#include
#include
#include
/*
*
www.eeworm.com/read/223007/14664909
c strlen.c
/*
** Compute the length of a string.
*/
#include
size_t
strlen( char *string )
{
int length = 0;
/*
** Advance through the string, counting characters
** until the term
www.eeworm.com/read/223007/14664928
c invdelet.c
/*
** Function to discard an inventory record.
*/
#include
#include "inventor.h"
void
discard_inventory_record( Invrec *record )
{
/*
** Delete the variant parts of the recor
www.eeworm.com/read/223007/14664946
h queue.h
/*
** Interface for a queue module
*/
#include
#define QUEUE_TYPE int /* Type of value in the queue */
/*
** create_queue
** Creates a queue. The argument indicates the maximu
www.eeworm.com/read/122674/14676301
h set.h
#ifndef SET_CLASS
#define SET_CLASS
#include
#include
enum ErrorType
{
InvalidMember, ExpectRightBrace, MissingValue,
MissingComma, InvalidChar, MissingLeftB