Skip to content
Snippets Groups Projects
Commit b534d8d2 authored by Oliver Sander's avatar Oliver Sander
Browse files

merged the tiny bit of information from fifo.doc into fifo.c and fifo.h

[[Imported from SVN: r8152]]
parent 1853e626
No related branches found
No related tags found
No related merge requests found
// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
// vi: set et ts=4 sw=2 sts=2:
/** \file
\brief Functions to handle a fifo (first in, first out) structure
*/
/****************************************************************************/
/* */
/* File: fifo.c */
......
/****************************************************************************/
/*D
fifo.c - Functions to handle a fifo (first in, first out) structure.
SYNOPSIS:
fifo_init (FIFO *myfifo, void *buffer, INT size)
fifo_clear (FIFO *myfifo)
fifo_empty (const FIFO *myfifo)
fifo_full (const FIFO *myfifo)
fifo_in (FIFO *myfifo, void *newelement)
*fifo_out (FIFO *myfifo)
DESCRIPTION:
These function support the handling of a fifo (first in, first out) structure.
For a detailed description see the manuals of each function.
D*/
/****************************************************************************/
/****************************************************************************/
/*D
fifo.h - Header file of 'fifo.c'.
DESCRIPTION:
The function given in 'fifo.c' support the handling of a fifo
(first in, first out) structure.
For further information see 'fifo.c'.
D*/
/****************************************************************************/
// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
// vi: set et ts=4 sw=2 sts=2:
/** \file
\brief Header file for general purpose fifo (first in, first out) structure
*/
/****************************************************************************/
/* */
/* File: fifo.h */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment