|  |  |  | Evolution-Data-Server Manual: Address Book Data (libebook-contacts) |  | 
|---|---|---|---|---|
| Top | Description | ||||
ENameWestern; ENameWestern * e_name_western_parse (const gchar *full_name); void e_name_western_free (ENameWestern *w);
typedef struct {
	/* Public */
	gchar *prefix;
	gchar *first;
	gchar *middle;
	gchar *nick;
	gchar *last;
	gchar *suffix;
	/* Private */
	gchar *full;
} ENameWestern;
ENameWestern *      e_name_western_parse                (const gchar *full_name);
Parses full_name and returns an ENameWestern struct filled with
the component parts of the name.
| 
 | A string containing a western name. | 
| Returns : | A new ENameWestern struct. | 
void                e_name_western_free                 (ENameWestern *w);
Frees the w struct and its contents.
| 
 | an ENameWestern struct |