mirror of
https://github.com/apache/cloudstack.git
synced 2025-12-18 19:44:21 +01:00
82 lines
1.4 KiB
C
82 lines
1.4 KiB
C
/*
|
|
** wordcat.h
|
|
** Word catalog
|
|
** BYTEmark (tm)
|
|
** BYTE's Native Mode Benchmarks
|
|
** Rick Grehan, BYTE Magazine
|
|
**
|
|
** Creation:
|
|
** Revision: 3/95
|
|
**
|
|
** DISCLAIMER
|
|
** The source, executable, and documentation files that comprise
|
|
** the BYTEmark benchmarks are made available on an "as is" basis.
|
|
** This means that we at BYTE Magazine have made every reasonable
|
|
** effort to verify that the there are no errors in the source and
|
|
** executable code. We cannot, however, guarantee that the programs
|
|
** are error-free. Consequently, McGraw-HIll and BYTE Magazine make
|
|
** no claims in regard to the fitness of the source code, executable
|
|
** code, and documentation of the BYTEmark.
|
|
** Furthermore, BYTE Magazine, McGraw-Hill, and all employees
|
|
** of McGraw-Hill cannot be held responsible for any damages resulting
|
|
** from the use of this code or the results obtained from using
|
|
** this code.
|
|
*/
|
|
|
|
/*
|
|
** Word catalog
|
|
*/
|
|
#define WORDCATSIZE 50
|
|
|
|
char *wordcatarray[WORDCATSIZE] =
|
|
{ "Hello",
|
|
"He",
|
|
"Him",
|
|
"the",
|
|
"this",
|
|
"that",
|
|
"though",
|
|
"rough",
|
|
"cough",
|
|
"obviously",
|
|
"But",
|
|
"but",
|
|
"bye",
|
|
"begin",
|
|
"beginning",
|
|
"beginnings",
|
|
"of",
|
|
"our",
|
|
"ourselves",
|
|
"yourselves",
|
|
"to",
|
|
"together",
|
|
"togetherness",
|
|
"from",
|
|
"either",
|
|
"I",
|
|
"A",
|
|
"return",
|
|
"However",
|
|
"that",
|
|
"example",
|
|
"yet",
|
|
"quickly",
|
|
"all",
|
|
"if",
|
|
"were",
|
|
"includes",
|
|
"always",
|
|
"never",
|
|
"not",
|
|
"small",
|
|
"returns",
|
|
"set",
|
|
"basic",
|
|
"Entered",
|
|
"with",
|
|
"used",
|
|
"shown",
|
|
"you",
|
|
"know" };
|