代码搜索:originally
找到约 9,666 项符合「originally」的源代码
代码结果 9,666
www.eeworm.com/read/410432/11287535
c swap1.c
/* swap1.c -- first attempt at a swapping function */
#include
void interchange(int u, int v); /* declare function */
int main(void)
{
int x = 5, y = 10;
printf("Originally
www.eeworm.com/read/410432/11287542
c swap3.c
/* swap3.c -- using pointers to make swapping work */
#include
void interchange(int * u, int * v);
int main(void)
{
int x = 5, y = 10;
printf("Originally x = %d and y = %d.
www.eeworm.com/read/258434/11864586
c sound.c
/*
** SOUND.C
**
** Original Copyright 1988-1991 by Bob Stout as part of
** the MicroFirm Function Library (MFL)
**
** This subset version is functionally identical to the
** version origi
www.eeworm.com/read/341877/12057235
c sound.c
/*
** SOUND.C
**
** Original Copyright 1988-1991 by Bob Stout as part of
** the MicroFirm Function Library (MFL)
**
** This subset version is functionally identical to the
** version origi
www.eeworm.com/read/130553/14186846
c sound.c
/*
** SOUND.C
**
** Original Copyright 1988-1991 by Bob Stout as part of
** the MicroFirm Function Library (MFL)
**
** This subset version is functionally identical to the
** version origi
www.eeworm.com/read/126957/14391620
man m_svr42mp.man
.SH "SVR42MP CREDITS"
The SVR42MP port was writen by Daniel Harris based on SVR42 and sunos5
code originally for SVR5. It was modified sightly to become
the svr42MP (Unixware) port By Mike Hopkirk.
www.eeworm.com/read/222772/14674169
creed
Free Software Creed ... originally from: Erik Lindberg
This program is released to the public domain. It can be used for any
purpose whatsoever. If you can get some poor sucker to pay money for it
www.eeworm.com/read/121540/14752206
txt readme.txt
Originally this was supposed to be a sample on setting text in the current open document
window. Now it is a sample that demonstraits quite a few functions. Give it a try to
see what it can do.
www.eeworm.com/read/216898/14988311
authors
Blitz was originally written by Todd Veldhuizen
It was moved to sourceforge at the beginning of October 2002.
www.eeworm.com/read/292920/8323985
c swap2.c
/* swap2.c -- researching swap1.c */
#include
void interchange(int u, int v);
int main(void)
{
int x = 5, y = 10;
printf("Originally x = %d and y = %d.\n", x , y);
int