Please send questions to st10@humboldt.edu .
/*--------------------------------------------------
 header file for function get_full_names
   created by smtuttle at Tue Apr 27 21:33:02 PDT 2010
--------------------------------------------------*/
#ifndef get_full_names_H
#define get_full_names_H

#include <string>
using namespace std;

void get_full_names(string first_name, string last_name, 
                    string& last_then_first, string& first_then_last);

#endif