代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/134909/5891442
c txtest.c
#include
void putch(unsigned char);
void putch(unsigned char c)
{
while(!TRMT) // TRMT1 is set when TSR is empty
continue;
TXREG = c; // load the register
}
void
www.eeworm.com/read/133772/5901989
h queue.h
//==========================================================================
//
// include/sys/queue.h
//
//==========================================================================
//####B
www.eeworm.com/read/133772/5902473
h snmp_debug.h
//==========================================================================
//
// ./lib/current/include/snmp_debug.h
//
//
//================================================================
www.eeworm.com/read/133287/5906782
c adler32.c
/* adler32.c -- compute the Adler-32 checksum of a data stream
* Copyright (C) 1995-2003 Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
*/
/* @(#) $Id: //
www.eeworm.com/read/132069/5924401
h hxassert.h
/* ***** BEGIN LICENSE BLOCK *****
* Version: RCSL 1.0/RPSL 1.0
*
* Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved.
*
* The contents of this file, and the
www.eeworm.com/read/131315/5932094
c forks.c
/*
* Benchmark program to calculate fork+wait
* overhead (approximately). Process
* forks and exits while parent waits.
* The time to run this program is used
* in calculating exec overhead.
*/
www.eeworm.com/read/131315/5932109
c vforks.c
/*
* Benchmark program to calculate vfork+wait
* overhead (approximately). Process
* vvforks and exits while parent waits.
* The time to run this program is used
* in calculating exec overhead.
www.eeworm.com/read/131315/5935293
c strtod.c
/*
* strtod.c
*
* Stupid version of System V strtod(3) library routine.
* Does no overflow/underflow checking.
*
* A real number is defined to be
* optional leading white space
* optional sign
www.eeworm.com/read/131315/5935453
awk up_down.awk
{
lim = split ($0, line)
out = ""
if (lim > 0) {
i = 0
while (i < lim) {
i++
if (i % 2)
out = out sprintf("%s ", toupper(line[i]))
else
out = out sprintf("%s ", tolower(line[i]
www.eeworm.com/read/131315/5935537
c streams.c
#ifndef lint
static char sccsid[] = "@(#)streams.c 2.5 5/27/93";
#endif not lint
#
# include "stdio.h"
# include "streams.h"
# include "ctype.h"
# include "bib.h"
/* getword(stream,p,ignore):