Subversion Repositories pentevo

Rev

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

  1. #ifndef _SPECCHARS_H
  2. #define _SPECCHARS_H
  3. /* specchars.h */
  4. /*****************************************************************************/
  5. /* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only                     */
  6. /*                                                                           */
  7. /* AS-Portierung                                                             */
  8. /*                                                                           */
  9. /* special character encodings                                               */
  10. /*                                                                           */
  11. /*****************************************************************************/
  12.  
  13. static unsigned char specchars[][2]=
  14.             {{0204,0344},        /* adieresis */
  15.              {0224,0366},        /* odieresis */
  16.              {0201,0374},        /* udieresis */
  17.              {0216,0304},        /* Adieresis */
  18.              {0231,0326},        /* Odieresis */
  19.              {0232,0334},        /* Udieresis */
  20.              {0341,0337},        /* ssharp */
  21.              {0375,0262},        /* 2-exp */
  22.              {0346,0265},        /* mu */
  23.              {0205,0340},        /* a graph */
  24.              {0000,0000}};
  25.  
  26. #endif /* _SPECCHARS_H */
  27.