/usr/include/mailutils/guile.h is in libmailutils-dev 1:2.99.98-1.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 | /* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 1999-2002, 2005-2007, 2009-2012 Free Software
Foundation, Inc.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 3 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General
Public License along with this library. If not, see
<http://www.gnu.org/licenses/>. */
#ifndef _MU_SCM_H
#define _MU_SCM_H
#include <libguile.h>
#define MU_SCM_SYMBOL_VALUE(p) SCM_VARIABLE_REF(scm_c_lookup(p))
typedef struct
{
int debug_guile;
mu_mailbox_t mbox;
char *user_name;
int (*init) (void *data);
SCM (*catch_body) (void *data, mu_mailbox_t mbox);
SCM (*catch_handler) (void *data, SCM tag, SCM throw_args);
int (*next) (void *data, mu_mailbox_t mbox);
int (*exit) (void *data, mu_mailbox_t mbox);
void *data;
} mu_guimb_param_t;
#ifdef __cplusplus
extern "C" {
#endif
void mu_scm_error (const char *func_name, int status,
const char *fmt, SCM args);
extern void mu_scm_init (void);
extern void mu_scm_mailbox_init (void);
extern SCM mu_scm_mailbox_create (mu_mailbox_t mbox);
extern int mu_scm_is_mailbox (SCM scm);
extern void mu_scm_message_init (void);
extern SCM mu_scm_message_create (SCM owner, mu_message_t msg);
extern int mu_scm_is_message (SCM scm);
extern mu_message_t mu_scm_message_get (SCM MESG);
extern int mu_scm_is_body (SCM scm);
extern void mu_scm_body_init (void);
extern SCM mu_scm_body_create (SCM mesg, mu_body_t body);
extern void mu_scm_address_init (void);
extern void mu_scm_logger_init (void);
extern void mu_scm_port_init (void);
extern SCM mu_port_make_from_stream (SCM msg, mu_stream_t stream, long mode);
extern void mu_scm_mime_init (void);
extern void mu_scm_message_add_owner (SCM MESG, SCM owner);
extern void mu_scm_mutil_init (void);
SCM mu_scm_make_debug_port (int level);
void mu_scm_debug_port_init (void);
extern void mu_scm_debug_init (void);
extern void mu_guile_init (int debug);
extern int mu_guile_load (const char *filename, int argc, char **argv);
extern int mu_guile_eval (const char *string);
extern int mu_guile_mailbox_apply (mu_mailbox_t mbx, char *funcname);
extern int mu_guile_message_apply (mu_message_t msg, char *funcname);
extern int mu_guile_safe_exec (SCM (*handler) (void *data), void *data,
SCM *result);
extern int mu_guile_safe_proc_call (SCM proc, SCM arglist, SCM *presult);
#ifdef __cplusplus
}
#endif
#endif
|