view include/find_email_adr.h @ 0:21ce01de8109

Initial revision
author mmj
date Thu, 22 Apr 2004 04:02:09 +1000
parents
children 3f177909efc8
line wrap: on
line source

/* Copyright (C) 2002, 2003 Mads Martin Joergensen <mmj at mmj.dk>
 *
 * $Id$
 *
 * This file is redistributable under version 2 of the GNU General
 * Public License as described at http://www.gnu.org/licenses/gpl.txt
 */

#ifndef FIND_EMAIL_ADR_H
#define FIND_EMAIL_ADR_H

#include <stddef.h>

struct email_container {
	int emailcount;
	char **emaillist;
};

struct email_container *find_email_adr(const char *str,
		struct email_container *retval);

#endif /* FIND_EMAIL_ADR_H */