代码搜索:stdlib
找到约 10,000 项符合「stdlib」的源代码
代码结果 10,000
www.eeworm.com/read/229812/4751034
gml _searche.gml
.func _searchenv _wsearchenv
#include
void _searchenv( const char *name,
const char *env_var,
char *pathname );
.ixfunc2 '&Search' &func
.if &'
www.eeworm.com/read/229812/4751168
gml qsort.gml
.func qsort
#include
void qsort( void *base,
size_t num,
size_t width,
int (*compar) ( const void *,
const void *) );
www.eeworm.com/read/227259/4776914
c static_leases.c
/*
* static_leases.c -- Couple of functions to assist with storing and
* retrieving data for static leases
*
* Wade Berrier September 2004
*
*/
#include
#in
www.eeworm.com/read/216802/4880976
c abs.c
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
#include
/*
* @implemented
*/
int
abs(int j)
{
return j
www.eeworm.com/read/216802/4880986
c atold.c
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
#include
long double
_atold(const char *ascii)
{
return _strtold(ascii, 0);
}
www.eeworm.com/read/208414/4992775
cpp buftype.cpp
/*
* File: BUFTYPE.CPP
*
* Date: Wednesday, August 28, 1996
*
* Author: Scott Manjourides
*
* Copyright (c) 1996 QUALCOMM, Incorporated
*
*/
#include
#include
www.eeworm.com/read/205824/5015861
c abs.c
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
#include
/*
* @implemented
*/
int
abs(int j)
{
return j
www.eeworm.com/read/205824/5015871
c atold.c
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
#include
long double
_atold(const char *ascii)
{
return _strtold(ascii, 0);
}
www.eeworm.com/read/204040/5036214
c strpfx.c
#include
#include
#include "strpfx.h"
// Determine if a string is a prefix
// - case sensitive varient
char*
strprefix (
char* szTest,
char* szFull )
{
www.eeworm.com/read/204040/5036254
c stripfx.c
#include
#include
#include "strpfx.h"
// Determine if a string is a prefix
// - case insensitive variant
char*
striprefix (
char* szTest,
char* szFull )
{