strings.c 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*
  2. * This file is part of the UCB release of Plan 9. It is subject to the license
  3. * terms in the LICENSE file found in the top-level directory of this
  4. * distribution and at http://akaros.cs.berkeley.edu/files/Plan9License. No
  5. * part of the UCB release of Plan 9, including this file, may be copied,
  6. * modified, propagated, or distributed except according to the terms contained
  7. * in the LICENSE file.
  8. */
  9. char *greek[]={ 0, /* 1-indexed */
  10. "alpha", "beta", "gamma", "delta", "epsilon", "zeta", "eta", "theta",
  11. "iota", "kappa", "lambda", "mu", "nu", "xsi", "omicron", "pi", "rho",
  12. "sigma", "tau", "upsilon", "phi", "chi", "psi", "omega",
  13. };
  14. Rune greeklet[]={ 0,
  15. L'α', L'β', L'γ', L'δ', L'ε', L'ζ', L'η', L'θ', L'ι', L'κ', L'λ',
  16. L'μ', L'ν', L'ξ', L'ο', L'π', L'ρ', L'σ', L'τ', L'υ', L'φ', L'χ',
  17. L'ψ', L'ω',
  18. };
  19. char *constel[]={ 0, /* 1-indexed */
  20. "and", "ant", "aps", "aql", "aqr", "ara", "ari", "aur", "boo", "cae",
  21. "cam", "cap", "car", "cas", "cen", "cep", "cet", "cha", "cir", "cma",
  22. "cmi", "cnc", "col", "com", "cra", "crb", "crt", "cru", "crv", "cvn",
  23. "cyg", "del", "dor", "dra", "equ", "eri", "for", "gem", "gru", "her",
  24. "hor", "hya", "hyi", "ind", "lac", "leo", "lep", "lib", "lmi", "lup",
  25. "lyn", "lyr", "men", "mic", "mon", "mus", "nor", "oct", "oph", "ori",
  26. "pav", "peg", "per", "phe", "pic", "psa", "psc", "pup", "pyx", "ret",
  27. "scl", "sco", "sct", "ser", "sex", "sge", "sgr", "tau", "tel", "tra",
  28. "tri", "tuc", "uma", "umi", "vel", "vir", "vol", "vul",
  29. };
  30. Name names[]={
  31. "gx", Galaxy,
  32. "pl", PlanetaryN,
  33. "oc", OpenCl,
  34. "gb", GlobularCl,
  35. "nb", DiffuseN,
  36. "c+n",NebularCl,
  37. "ast", Asterism,
  38. "kt", Knot,
  39. "***", Triple,
  40. "d*", Double,
  41. "*", Single,
  42. "pd", PlateDefect,
  43. "galaxy", Galaxy,
  44. "planetary", PlanetaryN,
  45. "opencluster", OpenCl,
  46. "globularcluster", GlobularCl,
  47. "nebula", DiffuseN,
  48. "nebularcluster",NebularCl,
  49. "asterism", Asterism,
  50. "knot", Knot,
  51. "triple", Triple,
  52. "double", Double,
  53. "single", Single,
  54. "nonexistent", Nonexistent,
  55. "unknown", Unknown,
  56. "platedefect", PlateDefect,
  57. 0, 0,
  58. };