conf_caratteri.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. #include "elea_tipi.h"
  2. /* e f = 0 0 */
  3. #define CAR_ZERO 0 /* '0' */
  4. #define CAR_UNO 1 /* '1' */
  5. #define CAR_DUE 3 /* '2' */
  6. #define CAR_TRE 7 /* '3' */
  7. #define CAR_QUATTRO 4 /* '4' */
  8. #define CAR_CINQUE 8 /* '5' */
  9. #define CAR_SEI 9 /* '6' */
  10. #define CAR_SETTE 11 /* '7' */
  11. #define CAR_OTTO 15 /* '8' */
  12. #define CAR_NOVE 12 /* '9' */
  13. #define CAR_ONDA 2 /* '~' */
  14. #define CAR_PIU 5 /* '+' */
  15. #define CAR_DIESIS 6 /* '#' */
  16. #define CAR_BARRA 10 /* '/' */
  17. #define CAR_MENO 13 /* '-' */
  18. #define CAR_DIVISO 14 /* '÷' */
  19. /* e f = 0 1 */
  20. #define CAR_PHI 16 /* 'φ' */
  21. #define CAR_A 17 /* 'A' */
  22. #define CAR_B 19 /* 'B' */
  23. #define CAR_C 23 /* 'C' */
  24. #define CAR_D 20 /* 'D' */
  25. #define CAR_E 24 /* 'E' */
  26. #define CAR_F 25 /* 'F' */
  27. #define CAR_G 27 /* 'G' */
  28. #define CAR_H 31 /* 'H' */
  29. #define CAR_I 28 /* 'I' */
  30. #define CAR_DELTA 18 /* 'δ' */
  31. #define CAR_UGUALE 21 /* '=' */
  32. #define CAR_ALFA 22 /* 'α' */
  33. #define CAR_PERCENTO 26 /* '%' */
  34. #define CAR_VIRGOLA 29 /* ',' */
  35. #define CAR_GAMMA 30 /* 'γ' */
  36. /* e f = 1 1 */
  37. #define CAR_EPSILON 48 /* 'ε' */
  38. #define CAR_J 49 /* 'J' */
  39. #define CAR_K 51 /* 'K' */
  40. #define CAR_L 55 /* 'L' */
  41. #define CAR_M 52 /* 'M' */
  42. #define CAR_N 56 /* 'N' */
  43. #define CAR_O 57 /* 'O' */
  44. #define CAR_P 59 /* 'P' */
  45. #define CAR_Q 63 /* 'Q' */
  46. #define CAR_R 60 /* 'R' */
  47. #define CAR_ASTERISCO 50 /* '*' */
  48. #define CAR_APERTA_PARENTESI 53 /* '(' */
  49. #define CAR_BETA 54 /* 'β' */
  50. #define CAR_DOLLARO 58 /* '$' */
  51. #define CAR_ETA 61 /* 'η' */
  52. #define CAR_PI 62 /* 'π' */
  53. /* e f = 1 0 */
  54. #define CAR_PUNTO 32 /* '.' */
  55. #define CAR_S 33 /* 'S' */
  56. #define CAR_T 35 /* 'T' */
  57. #define CAR_U 39 /* 'U' */
  58. #define CAR_V 36 /* 'V' */
  59. #define CAR_W 40 /* 'W' */
  60. #define CAR_X 41 /* 'X' */
  61. #define CAR_Y 43 /* 'Y' */
  62. #define CAR_Z 47 /* 'Z' */
  63. #define CAR_APOSTROFO 44 /* ''' */
  64. #define CAR_TETA 34 /* 'θ' */
  65. #define CAR_ESCLAMATIVO 37 /* '!' */
  66. #define CAR_CHIUSA_PARENTESI 38 /* ')' */
  67. #define CAR_INTERROGATIVO 42 /* '?' */
  68. #define CAR_E_COMMERCIALE 45 /* '&' */
  69. #define CAR_MOLTIPLICATO_PER 46 /* '⊗' */