Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-uggrid
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
staging
dune-uggrid
Commits
b534d8d2
Commit
b534d8d2
authored
19 years ago
by
Oliver Sander
Browse files
Options
Downloads
Patches
Plain Diff
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
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
low/fifo.c
+4
-0
4 additions, 0 deletions
low/fifo.c
low/fifo.doc
+0
-38
0 additions, 38 deletions
low/fifo.doc
low/fifo.h
+4
-0
4 additions, 0 deletions
low/fifo.h
with
8 additions
and
38 deletions
low/fifo.c
+
4
−
0
View file @
b534d8d2
// -*- 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 */
...
...
This diff is collapsed.
Click to expand it.
low/fifo.doc
deleted
100644 → 0
+
0
−
38
View file @
1853e626
/****************************************************************************/
/*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*/
/****************************************************************************/
This diff is collapsed.
Click to expand it.
low/fifo.h
+
4
−
0
View file @
b534d8d2
// -*- 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 */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment