X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Fset.h;h=270bc4abbeb7317cd4750f8c94ed8f3a36dd76c0;hb=1d9c8aefb2de3a4668090ae4c7ec7193c9301bdd;hp=ed31c8f00804609f9977ce711ad5ea314a92efe0;hpb=769e5c9b42bf87531296013fac0af819af9228ee;p=idzebra-moved-to-github.git diff --git a/include/set.h b/include/set.h index ed31c8f..270bc4a 100644 --- a/include/set.h +++ b/include/set.h @@ -1,16 +1,27 @@ /* - * Copyright (C) 1994, Index Data I/S + * Copyright (C) 1994-1999, Index Data * All rights reserved. * Sebastian Hammer, Adam Dickmeiss * * $Log: set.h,v $ - * Revision 1.1 1994-09-26 10:17:44 adam + * Revision 1.3 1999-02-02 14:50:44 adam + * Updated WIN32 code specific sections. Changed header. + * + * Revision 1.2 1997/09/05 15:30:05 adam + * Changed prototype for chr_map_input - added const. + * Added support for C++, headers uses extern "C" for public definitions. + * + * Revision 1.1 1994/09/26 10:17:44 adam * Dfa-module header files. * */ #ifndef SET_H #define SET_H +#ifdef __cplusplus +extern "C" { +#endif + typedef struct SetElement_ { struct SetElement_ *next; int value; @@ -36,5 +47,9 @@ void pr_Set (SetType st, Set s); unsigned hash_Set (SetType st, Set s); int eq_Set (SetType s, Set s1, Set s2); +#ifdef __cplusplus +} +#endif + #endif