代码搜索:stdlib
找到约 10,000 项符合「stdlib」的源代码
代码结果 10,000
www.eeworm.com/read/283498/9016091
a date.a
StdGrp group stdlib, stddata
stddata segment para public 'sldata'
stddata ends
stdlib segment para public 'slcode'
stdlib ends
slcall macro adrs
db 09ah ;Far call
dd stdgrp:ad
www.eeworm.com/read/283498/9016100
a memory.a
StdGrp group stdlib, stddata
;
stddata segment para public 'sldata'
stddata ends
stdlib segment para public 'slcode'
slcall macro adrs
db 09ah ;Far call
dd stdgrp:adrs ;Address of
www.eeworm.com/read/283498/9016208
asm shell.asm
; Simple version of SHELL.ASM with the dumb comments removed (except this one)
.xlist
include stdlib.a
includelib stdlib.lib
.list
.386 ;Comment out these two statements
optio
www.eeworm.com/read/283498/9016510
a ibmlinc.a
PAGE 60,132
NAME IBMLFILE
TITLE IBM/L Version 2.1
;============================================
include stdlib.a
includelib stdlib.lib
; M A C R O S
.XALL
;========
www.eeworm.com/read/283498/9016594
asm strasign.asm
; StrAssign.asm
;
; Demonstration of a string assignment routine.
include stdlib.a
includelib stdlib.lib
cseg segment para public 詂ode
www.eeworm.com/read/283498/9016670
asm shell.asm
; Simple version of SHELL.ASM with the dumb comments removed (except this one)
.xlist
include stdlib.a
includelib stdlib.lib
.list
.386 ;Comment out these two statements
optio
www.eeworm.com/read/382584/9018944
c srch_env.c
#include
#include
void main (int argc, char *argv[])
{
char path[128];
_searchenv(argv[1], "LIB", path);
if (path[0])
printf("Pathname: %s\n", path)
www.eeworm.com/read/382584/9019952
c atexit.c
#include
#include
void first(void)
{
printf("First function registered\n");
}
void second(void)
{
printf("Second function registered\n");
}
void main (vo
www.eeworm.com/read/382584/9019977
c showpath.c
#include
#include
void main (void)
{
char *entry;
entry = getenv("PATH");
if (*entry)
printf("PATH=%s\n", entry);
else
printf("PATH is not de
www.eeworm.com/read/382584/9020179
c min_max.c
#include
#include
void main (void)
{
printf("Maximum of %f and %f is %f\n",
10.0, 25.0, max(10.0, 25.0));
printf("Minimum of %f and %f is %f\n",
10.0,