1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
1998-11-16 13:07:27 +08:00
|
|
|
#ifndef FAX500_H
|
|
|
|
#define FAX500_H 1
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-16 06:40:11 +08:00
|
|
|
|
|
|
|
/* in faxtotpc.c */
|
|
|
|
void strip_nonnum ( char *str );
|
|
|
|
char *remove_parens( char *ibuf, char *obuf );
|
|
|
|
char *munge_phone ( char *ibuf, char *obuf );
|
|
|
|
char *faxtotpc ( char *phone, char *userinfo );
|
1998-11-16 13:07:27 +08:00
|
|
|
|
|
|
|
#endif
|