summaryrefslogtreecommitdiffstats
path: root/baseline/source/anagram/anagram_compare.h
diff options
context:
space:
mode:
Diffstat (limited to 'baseline/source/anagram/anagram_compare.h')
-rw-r--r--baseline/source/anagram/anagram_compare.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/baseline/source/anagram/anagram_compare.h b/baseline/source/anagram/anagram_compare.h
new file mode 100644
index 0000000..31e869a
--- /dev/null
+++ b/baseline/source/anagram/anagram_compare.h
@@ -0,0 +1,27 @@
1/*
2
3 This header is part of the TACLeBench benchmark suite.
4 Version 2.0
5
6 Name: anagram_compare.h
7
8 Author: Raymond Chen
9
10 Function: This header contains the comparison 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_COMPARE_H
23#define ANAGRAM_COMPARE_H
24
25int anagram_CompareFrequency( char *pch1, char *pch2 );
26
27#endif