7 /* generate pathname from mailer service class and name
9 /* #include <mail_proto.h>
11 /* char *mail_pathname(service_class, service_name)
12 /* char *service_class;
13 /* char *service_name;
15 /* mail_pathname() translates the specified service class and name
16 /* to a pathname. The result should be passed to myfree() when it
21 /* The Secure Mailer license must be distributed with this software.
24 /* IBM T.J. Watson Research
26 /* Yorktown Heights, NY 10598, USA
33 /* Utility library. */
35 #include <stringops.h>
39 #include "mail_proto.h"
41 /* mail_pathname - map service class and service name to pathname */
43 char *mail_pathname(const char *service_class
, const char *service_name
)
45 return (concatenate(service_class
, "/", service_name
, (char *) 0));