代码搜索:stdlib
找到约 10,000 项符合「stdlib」的源代码
代码结果 10,000
www.eeworm.com/read/338652/12289878
txt gas.txt
#include
#include
#include
/**************************************
The Definition of Constant
**************************************/
#define POPSIZE
www.eeworm.com/read/337443/12368526
c basop.c
#include "typedef.h"
#include "Basop.h"
#include "stdio.h"
#include "stdlib.h"
/*___________________________________________________________________________
|
www.eeworm.com/read/120506/14801311
bak u24xmon.c.bak
/************************************************
* NAME : u24xmon.c *
* Version : 28.FEBRUARY.2001 *
************************************************/
#include
#include
www.eeworm.com/read/229812/4744481
c strtoull.c
#include
void main()
{
unsigned long long int v;
v = strtoull( "12345678909876", NULL, 10 );
}
www.eeworm.com/read/219228/4849253
cpp console-main-c.cpp
#include
#include
int main()
{
printf("Hello world!\n");
return 0;
}
www.eeworm.com/read/216875/4879135
cpp columnsmultieditorsdemomain.cpp
//---------------------------------------------------------------------------
#include
#include
#include "shellapi.hpp"
#pragma hdrstop
#include "ColumnsMultiEditorsDemoMai
www.eeworm.com/read/209211/4984749
c abs.c
#include
int
abs(int a)
{
if(a < 0)
return -a;
return a;
}
long
labs(long a)
{
if(a < 0)
return -a;
return a;
}
www.eeworm.com/read/209211/4984763
c atoll.c
#include
long long
atoll(const char *s)
{
return(strtoll(s, (char **)0, 10));
}
www.eeworm.com/read/340665/3269624
c cfreer.c
#include
void
_cfree_r (struct _reent *ptr, void *mem)
{
return cfree (mem);
}
www.eeworm.com/read/327360/3460378
cstdlib
#ifndef _Pegasus_cstdlib
#define _Pegasus_cstdlib
#include
#endif /* _Pegasus_cstdlib */