include/
* filenames.h: #include "hashtab.h". (filename_hash, filename_eq): Declare. libiberty/ * filename_cmp.c (filename_hash, filename_eq): New functions.
This commit is contained in:
parent
5e99c15672
commit
2fca7fa911
|
@ -1,3 +1,8 @@
|
||||||
|
2012-07-13 Doug Evans <dje@google.com>
|
||||||
|
|
||||||
|
* filenames.h: #include "hashtab.h".
|
||||||
|
(filename_hash, filename_eq): Declare.
|
||||||
|
|
||||||
2012-07-13 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
|
2012-07-13 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
|
||||||
|
|
||||||
* elf/s390.h (START_RELOC_NUMBERS): Define R_390_IRELATIVE reloc.
|
* elf/s390.h (START_RELOC_NUMBERS): Define R_390_IRELATIVE reloc.
|
||||||
|
|
|
@ -26,6 +26,8 @@ Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
#ifndef FILENAMES_H
|
#ifndef FILENAMES_H
|
||||||
#define FILENAMES_H
|
#define FILENAMES_H
|
||||||
|
|
||||||
|
#include "hashtab.h" /* for hashval_t */
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
@ -84,6 +86,10 @@ extern int filename_cmp (const char *s1, const char *s2);
|
||||||
extern int filename_ncmp (const char *s1, const char *s2,
|
extern int filename_ncmp (const char *s1, const char *s2,
|
||||||
size_t n);
|
size_t n);
|
||||||
|
|
||||||
|
extern hashval_t filename_hash (const void *s);
|
||||||
|
|
||||||
|
extern int filename_eq (const void *s1, const void *s2);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue