X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/mLib/blobdiff_plain/97f65b001294338abed02a7b132d6be6517b3f1d..ee9b1404a97247490a09fcf10af83a76a3d3d72d:/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 ------------------------------------------------*/