fruits.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. #ifndef FRUITS_H_
  2. #define FRUITS_H_
  3. // What? This is just a list of fruits. What did you expect?
  4. const char *fruits[] = {
  5. "Apple",
  6. "Apricot",
  7. "Avocado",
  8. "Banana",
  9. "Bilberry",
  10. "Blackberry",
  11. "Blackcurrant",
  12. "Blueberry",
  13. "Boysenberry",
  14. "Currant",
  15. "Cherry",
  16. "Cherimoya",
  17. "Chico fruit",
  18. "Cloudberry",
  19. "Coconut",
  20. "Cranberry",
  21. "Cucumber",
  22. "Custard apple",
  23. "Damson",
  24. "Date",
  25. "Dragonfruit",
  26. "Durian",
  27. "Elderberry",
  28. "Feijoa",
  29. "Fig",
  30. "Goji berry",
  31. "Gooseberry",
  32. "Grape",
  33. "Raisin",
  34. "Grapefruit",
  35. "Guava",
  36. "Honeyberry",
  37. "Huckleberry",
  38. "Jabuticaba",
  39. "Jackfruit",
  40. "Jambul",
  41. "Jujube",
  42. "Juniper berry",
  43. "Kiwano",
  44. "Kiwifruit",
  45. "Kumquat",
  46. "Lemon",
  47. "Lime",
  48. "Loquat",
  49. "Longan",
  50. "Lychee",
  51. "Mango",
  52. "Mangosteen",
  53. "Marionberry",
  54. "Melon",
  55. "Cantaloupe",
  56. "Honeydew",
  57. "Watermelon",
  58. "Miracle fruit",
  59. "Mulberry",
  60. "Nectarine",
  61. "Nance",
  62. "Olive",
  63. "Orange",
  64. "Blood orange",
  65. "Clementine",
  66. "Mandarine",
  67. "Tangerine",
  68. "Papaya",
  69. "Passionfruit",
  70. "Peach",
  71. "Pear",
  72. "Persimmon",
  73. "Physalis",
  74. "Plantain",
  75. "Plum",
  76. "Prune",
  77. "Pineapple",
  78. "Plumcot",
  79. "Pomegranate",
  80. "Pomelo",
  81. "Purple mangosteen",
  82. "Quince",
  83. "Raspberry",
  84. "Salmonberry",
  85. "Rambutan",
  86. "Redcurrant",
  87. "Salal berry",
  88. "Salak",
  89. "Satsuma",
  90. "Soursop",
  91. "Star fruit",
  92. "Solanum quitoense",
  93. "Strawberry",
  94. "Tamarillo",
  95. "Tamarind",
  96. "Ugli fruit",
  97. "Yuzu"
  98. };
  99. const size_t fruits_count = sizeof(fruits) / sizeof(fruits[0]);
  100. // Source: https://gist.github.com/lasagnaphil/7667eaeddb6ed0c565f0cb653d756942
  101. #endif // FRUITS_H_