#ifndef __PITCH_H__
#define __PITCH_H__

#define NUM_SCALE_NOTES 88

/* structure for one musical pitch */
typedef struct pitch
{
  char* name;
  char* altName;
  int octave;
  int freq;
} pitch;

#endif
