X-Git-Url: https://git.distorted.org.uk/~mdw/mLib/blobdiff_plain/e32dabae3480363e6eb93153f5242ed8c9f2b590..1ef7279c324e278ecf75243ca651710db9ac708e:/lbuf.h diff --git a/lbuf.h b/lbuf.h index 7772885..9543d08 100644 --- a/lbuf.h +++ b/lbuf.h @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: lbuf.h,v 1.1 1999/05/14 21:01:14 mdw Exp $ + * $Id: lbuf.h,v 1.2 1999/05/17 20:36:08 mdw Exp $ * * Block-to-line buffering * @@ -30,6 +30,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: lbuf.h,v $ + * Revision 1.2 1999/05/17 20:36:08 mdw + * Make the magical constants for the buffer flags uppercase. + * * Revision 1.1 1999/05/14 21:01:14 mdw * Integrated `select' handling bits from the background resolver project. * @@ -105,8 +108,8 @@ typedef struct lbuf { } lbuf; enum { - lbuf_cr = 1, /* Read a carriage return */ - lbuf_enable = 2 /* Buffer is currently enabled */ + LBUF_CR = 1, /* Read a carriage return */ + LBUF_ENABLE = 2 /* Buffer is currently enabled */ }; /*----- Functions provided ------------------------------------------------*/