/*--------------------------------------------------
 header file for function count_vowels
   created by st10 at Tue Oct 25 14:12:35 PDT 2016
--------------------------------------------------*/
#ifndef count_vowels_H
#define count_vowels_H

#include <string>
using namespace std;

int count_vowels(string a_string);

#endif