代码搜索:stdlib
找到约 10,000 项符合「stdlib」的源代码
代码结果 10,000
www.eeworm.com/read/136690/13365692
jc class2.jc
/*
* In this file we're going to test using nested objects
*/
import stdlib;
/*
* class Point
*
* - A class must have at least ONE constructor
* - A constructor must DIRECTLY (not by
www.eeworm.com/read/136690/13365694
jc math.jc
/*
* math.jc
*
* This file demonstrates all the mathematical functions
* defined in the 'math' native type library.
*/
import stdlib;
import math;
/*
* function main()
*
* ou
www.eeworm.com/read/136690/13365696
jc perftest2.jc
/*
* perftest2.jc
*
* A simple performance test. Count repeatedly from 0 to 1.000.000 and take average time.
*/
// Import Typelibs
import stdlib;
// number of iterations the script
www.eeworm.com/read/136690/13365698
jc trex.jc
/*
* trex.jc
*
* Test the Trex (tiny regular expression) object.
*/
import File;
import Trex;
import stdlib;
const long kFileIndex = 1;
const long kExprIndex = 2;
function string m
www.eeworm.com/read/322019/13391046
h putenv.h
#include
namespace qstd {
/** A Qt 4 wrapper around stdlib.h putenv, which allows us to avoid the use of
char[] in favor of QStrings. */
void putenv(QString key, QString value);
};
www.eeworm.com/read/321748/13400082
h all.h
//All.h
#include
#include
#include
#include"Bell.h"
#include"Button.h"
#include"Clock.h"
#include"Door.h"
#include"Elevator.h"
#include"Floor.h"
#include"Light.
www.eeworm.com/read/321265/13409792
c execle.c
#include
#include
#include
int main()
{
char *envp[]={"PATH=/tmp","USER=sunq",NULL};
if(fork()==0){
if(execle("/bin/env","env",NULL,en
www.eeworm.com/read/321265/13409797
c execve.c
#include
#include
#include
int main()
{
char *arg[]={"env",NULL};
char *envp[]={"PATH=/tmp","USER=sunq",NULL};
if(fork()==0){
if(("b
www.eeworm.com/read/321265/13409804
c alarm.c
#include
#include
#include
int main()
{
int ret;
ret=alarm(5);
pause();
printf("I have been waken up.\n",ret);
}
www.eeworm.com/read/321262/13410010
c 7-44.c
/*将字符串a,b,c 分别采用10,2,16进制转换成数字*/
#include
main()
{
char a[]="1000000000";
char b[]="1000000000";
char c[]="ffff";
printf("a=%d\n",strtol(a,NULL,10));
printf("b=%d\n",strtol(b,NULL,2)