#ifndef __NOTESEQ_H__
#define __NOTESEQ_H__

#include "pitch.h"

/* list operations for a linked list of notes */

/* set list to null */
void
setNull (noteNode** first);

/* add notes at end of a tune (a melody or musical phrase) */
void
addAtEnd (noteNode** first);

/* print notes in a tune (a melody or musical phrase) in tabular form */
void
printTuneTable (noteNode* first);

#endif
