Ignore:
Timestamp:
Nov 26, 2002, 10:24:54 PM (23 years ago)
Author:
bird
Message:

Import of RELENG_4_7_0_RELEASE

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/FREEBSD/src/kmk/buf.h

    r10 r24  
    11/*
    2  * Copyright (c) 1988, 1989, 1990, 1993
    3  *      The Regents of the University of California.  All rights reserved.
     2 * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
    43 * Copyright (c) 1988, 1989 by Adam de Boor
    54 * Copyright (c) 1989 by Berkeley Softworks
     
    3736 * SUCH DAMAGE.
    3837 *
    39  *      @(#)buf.h       8.2 (Berkeley) 4/28/95
    40  * $FreeBSD: src/usr.bin/make/buf.h,v 1.12 2002/09/17 21:29:06 jmallett Exp $
     38 *      from: @(#)buf.h 8.1 (Berkeley) 6/6/93
     39 * $FreeBSD: src/usr.bin/make/buf.h,v 1.9 1999/08/28 01:03:26 peter Exp $
    4140 */
    4241
     
    4746
    4847#ifndef _BUF_H
    49 #define _BUF_H
     48#define _BUF_H
    5049
    5150#include    "sprite.h"
     
    6665                (*(bp)->inPtr++ = (byte), *(bp)->inPtr = 0), 1)
    6766
    68 #define BUF_ERROR 256
     67#define BUF_ERROR 256
    6968
    70 void Buf_OvAddByte(Buffer, int);
    71 void Buf_AddBytes(Buffer, int, const Byte *);
    72 void Buf_UngetByte(Buffer, int);
    73 void Buf_UngetBytes(Buffer, int, Byte *);
    74 int Buf_GetByte(Buffer);
    75 int Buf_GetBytes(Buffer, int, Byte *);
    76 Byte *Buf_GetAll(Buffer, int *);
    77 void Buf_Discard(Buffer, int);
    78 int Buf_Size(Buffer);
    79 Buffer Buf_Init(int);
    80 void Buf_Destroy(Buffer, Boolean);
    81 void Buf_ReplaceLastByte(Buffer, int);
     69void Buf_OvAddByte __P((Buffer, int));
     70void Buf_AddBytes __P((Buffer, int, const Byte *));
     71void Buf_UngetByte __P((Buffer, int));
     72void Buf_UngetBytes __P((Buffer, int, Byte *));
     73int Buf_GetByte __P((Buffer));
     74int Buf_GetBytes __P((Buffer, int, Byte *));
     75Byte *Buf_GetAll __P((Buffer, int *));
     76void Buf_Discard __P((Buffer, int));
     77int Buf_Size __P((Buffer));
     78Buffer Buf_Init __P((int));
     79void Buf_Destroy __P((Buffer, Boolean));
     80void Buf_ReplaceLastByte __P((Buffer, int));
    8281
    8382#endif /* _BUF_H */
Note: See TracChangeset for help on using the changeset viewer.