代码搜索:stdlib
找到约 10,000 项符合「stdlib」的源代码
代码结果 10,000
www.eeworm.com/read/491337/1191826
c 冒泡排序.c
# include "stdio.h"
# include "stdlib.h"
struct node{
int values;
struct node *next;
};
struct node *create(int [],int);
void sort (struct node **)
www.eeworm.com/read/490827/1195864
cpp gp_iniset.cpp
//********************************************
// IniSet 相关函数
// 创建于2000年4月7日
//********************************************
#include
#include
#include
#incl
www.eeworm.com/read/489717/1212124
c example2.c
/* NOCW */
/*
Please read the README file for condition of use, before
using this software.
Maurice Gittens January 1997
*/
#include
#include
www.eeworm.com/read/479931/1328461
c printcmds.c
/* This table is used as a source for every ascii character.
It is explicitly unsigned to avoid differences due to native characters
being either signed or unsigned. */
#include
unsig
www.eeworm.com/read/475965/1374351
c setbuf.c
/* reverse.c -- displays a file in reverse order */
#include
#include
int main(void)
{
printf("%d\n", BUFSIZ);
return 0;
}
www.eeworm.com/read/458530/1585820
c 冒泡排序.c
# include "stdio.h"
# include "stdlib.h"
struct node{
int values;
struct node *next;
};
struct node *create(int [],int);
void sort (struct node **)
www.eeworm.com/read/242732/4537043
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/242732/4537053
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/242732/4540386
c armopcode.c
#include
#include
#include "../../misc.h"
/* cpuDummyInit_Add
* Input param :
* out : The file pointer that we write to (the output file to in
www.eeworm.com/read/242082/4556387
c strpfx.c
#include
#include
#include "strpfx.h"
// Determine if a string is a prefix
// - case sensitive varient
char*
strprefix (
char* szTest,
char* szFull )
{