Read in a list of fortunes from a CSV in the format:
<zodiac sign>,<moon phase>,<fortune>.<new line>
Convert this list of fortunes to a 2D array of char pointers. The first dimension is the moon phase, from the corresponding moon phase enum and the second dimension is the zodiac sign, from the corresponding zodiac enum.
Read in a list of fortunes from a CSV in the format:
<zodiac sign>,<moon phase>,<fortune>.<new line>
Convert this list of fortunes to a 2D array of char pointers. The first dimension is the moon phase, from the corresponding moon phase enum and the second dimension is the zodiac sign, from the corresponding zodiac enum.