28 lines
428 B
C
Executable File
28 lines
428 B
C
Executable File
/*
|
|
|
|
This header is part of the TACLeBench benchmark suite.
|
|
Version 2.0
|
|
|
|
Name: anagram_strings.h
|
|
|
|
Author: Raymond Chen
|
|
|
|
Function: This header contains some C standard library functions used by anagram.
|
|
|
|
Source: unknown
|
|
|
|
Original name: anagram
|
|
|
|
Changes: See ChangeLog.txt
|
|
|
|
License: See anagram.c
|
|
|
|
*/
|
|
|
|
#ifndef ANAGRAM_STRINGS_H
|
|
#define ANAGRAM_STRINGS_H
|
|
|
|
void anagram_bzero( char *p, unsigned long len );
|
|
|
|
#endif
|