Subversion Repositories pentevo

Rev

Blame | Last modification | View Log | Download | RSS feed | ?url?

  1. /* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only                     */
  2. #ifndef _FINDHYPHEN_H
  3. #define _FINDHYPHEN_H
  4.  
  5. #define HYPHEN_CHR_ae "\344"
  6. #define HYPHEN_CHR_oe "\366"
  7. #define HYPHEN_CHR_ue "\374"
  8. #define HYPHEN_CHR_AE "\304"
  9. #define HYPHEN_CHR_OE "\326"
  10. #define HYPHEN_CHR_UE "\334"
  11. #define HYPHEN_CHR_sz "\337"
  12.  
  13. extern void BuildTree(char **Patterns);
  14.  
  15. extern void AddException(char *Name);
  16.  
  17. extern void DoHyphens(char *word, int **posis, int *posicnt);
  18.  
  19. extern void DestroyTree(void);
  20. #endif /* _FINDHYPHEN_H */
  21.