diff options
| author | Joshua Bakita <bakitajoshua@gmail.com> | 2019-10-07 19:13:39 -0400 |
|---|---|---|
| committer | Joshua Bakita <bakitajoshua@gmail.com> | 2019-10-07 19:13:39 -0400 |
| commit | 386b7d3366f1359a265da207a9cafa3edf553b64 (patch) | |
| tree | c76120c2c138faed822e4ae386be6ef22a738a78 /all_pairs/source/anagram/anagram_stdlib.h | |
| parent | 54a3f7091a2146b29c73a6fdc4b62a5c4ad7a3d8 (diff) | |
Reorganize and commit all the modified TACLeBench code and run scripts
Diffstat (limited to 'all_pairs/source/anagram/anagram_stdlib.h')
| -rw-r--r-- | all_pairs/source/anagram/anagram_stdlib.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/all_pairs/source/anagram/anagram_stdlib.h b/all_pairs/source/anagram/anagram_stdlib.h new file mode 100644 index 0000000..0e745d5 --- /dev/null +++ b/all_pairs/source/anagram/anagram_stdlib.h | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | /* | ||
| 2 | |||
| 3 | This header is part of the TACLeBench benchmark suite. | ||
| 4 | Version 2.0 | ||
| 5 | |||
| 6 | Name: anagram_stdlib.h | ||
| 7 | |||
| 8 | Author: Raymond Chen | ||
| 9 | |||
| 10 | Function: This header contains some C standard library functions used by anagram. | ||
| 11 | |||
| 12 | Source: unknown | ||
| 13 | |||
| 14 | Original name: anagram | ||
| 15 | |||
| 16 | Changes: See ChangeLog.txt | ||
| 17 | |||
| 18 | License: See anagram.c | ||
| 19 | |||
| 20 | */ | ||
| 21 | |||
| 22 | #ifndef ANAGRAM_STDLIB_H | ||
| 23 | #define ANAGRAM_STDLIB_H | ||
| 24 | |||
| 25 | void *anagram_malloc( unsigned int numberOfBytes ); | ||
| 26 | |||
| 27 | void anagram_qsort( void *va, unsigned long n, unsigned long es ); | ||
| 28 | |||
| 29 | #endif | ||
