代码搜索:Local

找到约 10,000 项符合「Local」的源代码

代码结果 10,000
www.eeworm.com/read/390183/8479847

c lin-elf.c

/* x86 running linux and using nasm as ELF */ #include #ifndef LCCDIR #define LCCDIR "/usr/local/lib/lcc/" #endif #define NASMPATH "/usr/local/bin/nasm" char *cpp[] = { LCCDIR
www.eeworm.com/read/390106/8484389

htm gettimeotherzone2.htm

Converting Times Between Time Zones (Java Developers Almanac Example)
www.eeworm.com/read/290380/8486111

c localerr.c

#include void local_values(void) { int a = 1, b = 2, c = 3; printf("a contains %d b contains %d c contains %d\n", a, b, c); } void main(void) { printf("a contains %
www.eeworm.com/read/290380/8486466

c timezone.c

#include #include void main(void) { tzset(); printf("Difference between local and GMT is %d hours\n", timezone / 3600); }
www.eeworm.com/read/290270/8492054

plg dac0832.plg

礦ision3 Build Log Project: E:\单片机实验板-机电教研室用\指导书\DAC0832\DAC0832-CODE\DAC0832.uv2 Project File Date: 03/08/2008 Output: Build target 'Target 1'
www.eeworm.com/read/389927/8494213

keyinit

#!/bin/ksh if [ "`/usr/bin/hostname`" != "latour" ] then echo "$0: Use S/Key initialize only on system latour" exit 1 fi /usr/local/bin/skey.init $*
www.eeworm.com/read/290224/8495204

lua readonly.lua

-- make global variables readonly local f=function (t,i) error("cannot redefine global variable `"..i.."'",2) end local g={} local G=getfenv() setmetatable(g,{__index=G,__newindex=f}) setfenv(1,g) -
www.eeworm.com/read/290224/8495206

lua bisect.lua

-- bisection method for solving non-linear equations delta=1e-6 -- tolerance function bisect(f,a,b,fa,fb) local c=(a+b)/2 io.write(n," c=",c," a=",a," b=",b,"\n") if c==a or c==b or math.abs(a-b)
www.eeworm.com/read/290224/8495210

lua fib.lua

-- fibonacci function with cache -- very inefficient fibonacci function function fib(n) N=N+1 if n
www.eeworm.com/read/290224/8495213

lua trace-globals.lua

-- trace assigments to global variables do -- a tostring that quotes strings. note the use of the original tostring. local _tostring=tostring local tostring=function(a) if type(a)=="string" then