代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/148721/5709190
cpp pakstuff.cpp
/*
===========================================================================
Copyright (C) 1999-2005 Id Software, Inc.
This file is part of Quake III Arena source code.
Quake III Arena source code
www.eeworm.com/read/148721/5709612
cpp q_shared.cpp
/*
===========================================================================
Copyright (C) 1999-2005 Id Software, Inc.
This file is part of Quake III Arena source code.
Quake III Arena source code
www.eeworm.com/read/148721/5709720
c bg_lib.c
//
//
// bg_lib,c -- standard C library replacement routines used by code
// compiled for the virtual machine
#include "q_shared.h"
/*-
* Copyright (c) 1992, 1993
* The Regents of the Uni
www.eeworm.com/read/148721/5709737
c q_shared.c
/*
===========================================================================
Copyright (C) 1999-2005 Id Software, Inc.
This file is part of Quake III Arena source code.
Quake III Arena sourc
www.eeworm.com/read/148721/5710192
cpp q_shared.cpp
/*
===========================================================================
Copyright (C) 1999-2005 Id Software, Inc.
This file is part of Quake III Arena source code.
Quake III Arena sourc
www.eeworm.com/read/148143/5718110
c stdlib.c
/*
* File: stdlib.c
* Purpose: Functions normally found in a standard C lib.
*
* Notes: This supports ASCII only!!!
*
* Author: Eric DeVolder
* Date:
*
* Modifications:
*/
#
www.eeworm.com/read/147766/5723210
c hexify.c
#include
void main()
{
int c;
int comma=0;
int count=0;
while((c=getchar())!=EOF)
{
unsigned char x=c;
if(comma)
printf(",");
else
comma=1;
if(count==8)
{
count=0;
www.eeworm.com/read/147766/5727104
h system.h
/*
* linux/include/asm-arm/proc-armo/system.h
*
* Copyright (C) 1995, 1996 Russell King
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU
www.eeworm.com/read/147766/5727342
h uncompress.h
/*
* linux/include/asm-arm/arch-mx1ads/uncompress.h
*
*
*
* Copyright (C) 1999 ARM Limited
* Copyright (C) Shane Nay (shane@minirl.com)
*
* This program is free software; you can redistribu
www.eeworm.com/read/147331/5731002
c stpcpy.c
char *
__stpcpy (dest, src)
char *dest;
const char *src;
{
while ((*dest++ = *src++) != '\0')
/* Do nothing. */ ;
return dest - 1;
}