summaryrefslogtreecommitdiffstats
path: root/stream.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2013-12-10 08:07:33 -0800
committerKaz Kylheku <kaz@kylheku.com>2013-12-10 08:07:33 -0800
commitb698bb706067d911c62385b477684efea6aa983a (patch)
tree09596eeefba83198a549c01d22497a07bc8d97d3 /stream.c
parent434ea4f4ce65a553205f4030a6b98268ff938f0f (diff)
downloadtxr-b698bb706067d911c62385b477684efea6aa983a.tar.gz
txr-b698bb706067d911c62385b477684efea6aa983a.tar.bz2
txr-b698bb706067d911c62385b477684efea6aa983a.zip
syslog support; bitwise logior and logand functions become variadic.
* Makefile: Use -iquote to restrict our #include search paths from being processed for #include <...>. Add syslog.o to OBJS-y if have_syslog is y. * configure (have_syslog): New variable, set by detecting syslog API. * eval.c (eval_init): logand and logior registrations changed to go to variadic versions. New syslog variables and functions registered. * lib.c (logandv, logiorv): New functions. * lib.h (logandv, logiorv): Declared. * txr.c (main): Call syslog_init. * syslog.c: New file. * syslog.h: New file. * txr.1: Updated. * txr.vim: Regenerated.
Diffstat (limited to 'stream.c')
-rw-r--r--stream.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/stream.c b/stream.c
index e4d4fc91..66dc5c30 100644
--- a/stream.c
+++ b/stream.c
@@ -65,27 +65,6 @@ val s_ifchr, s_ififo, s_isuid, s_isgid, s_isvtx, s_irwxu;
val s_irusr, s_iwusr, s_ixusr, s_irwxg, s_irgrp, s_iwgrp;
val s_ixgrp, s_irwxo, s_iroth, s_iwoth, s_ixoth;
-enum strm_whence {
- strm_start = SEEK_SET,
- strm_cur = SEEK_CUR,
- strm_end = SEEK_SET
-};
-
-struct strm_ops {
- struct cobj_ops cobj_ops;
- val (*put_string)(val, val);
- val (*put_char)(val, val);
- val (*put_byte)(val, int);
- val (*get_line)(val);
- val (*get_char)(val);
- val (*get_byte)(val);
- val (*close)(val, val);
- val (*flush)(val);
- val (*seek)(val, cnum, enum strm_whence);
- val (*get_prop)(val, val ind);
- val (*set_prop)(val, val ind, val);
-};
-
static void common_destroy(val obj)
{
(void) close_stream(obj, nil);