X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fstruct%2Ffifobuf.h;h=a749d89fce4bc7b69552e8196bc72d4b35090df2;hb=cb5ac008ef47b00966b573c2df2c1eeacf452b98;hp=1d7b555ac2a8bec5e5cff853a617acd833cec892;hpb=e5174304054e26cd8f3cd1f9980871c20c07fc46;p=bertos.git diff --git a/bertos/struct/fifobuf.h b/bertos/struct/fifobuf.h index 1d7b555a..a749d89f 100644 --- a/bertos/struct/fifobuf.h +++ b/bertos/struct/fifobuf.h @@ -28,13 +28,8 @@ * * Copyright 2003, 2004 Develer S.r.l. (http://www.develer.com/) * Copyright 2001, 2008 Bernie Innocenti - * * --> * - * \version $Id: fifobuf.h 1532 2008-08-04 07:21:26Z bernie $ - * - * \author Bernie Innocenti - * * \brief General pourpose FIFO buffer implemented with a ring buffer * * \li \c begin points to the first buffer element; @@ -64,10 +59,13 @@ * The buffer is also FULL when \c tail points to the last buffer * location and head points to the first one: * \code head == begin && tail == end \endcode + * + * \version $Id$ + * \author Bernie Innocenti */ -#ifndef MWARE_FIFO_H -#define MWARE_FIFO_H +#ifndef STRUCT_FIFO_H +#define STRUCT_FIFO_H #include #include @@ -357,5 +355,4 @@ void fifo_pushblock(FIFOBuffer *fb, unsigned char *block, size_t len) } #endif -#endif /* MWARE_FIFO_H */ - +#endif /* STRUCT_FIFO_H */