/*--------------------------------------------------
 header file for function is_empty
   created by st10 at Tue Oct 25 13:33:58 PDT 2016
--------------------------------------------------*/
#ifndef is_empty_H
#define is_empty_H

#include <string>
using namespace std;

bool is_empty(string a_string);

#endif