mirror of
https://github.com/ascii-boxes/boxes.git
synced 2024-12-13 18:30:39 +01:00
28 lines
668 B
C
28 lines
668 B
C
/*
|
|
* File: generate.h
|
|
* Project Main: boxes.c
|
|
* Date created: June 23, 1999 (Wednesday, 20:12h)
|
|
* Author: Thomas Jensen
|
|
* tsjensen@stud.informatik.uni-erlangen.de
|
|
* Version: $Id$
|
|
* Language: ANSI C
|
|
* Purpose: Box generation, i.e. the drawing of boxes
|
|
* Remarks: ---
|
|
*
|
|
* Revision History:
|
|
*
|
|
* $Log$
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
*/
|
|
|
|
#ifndef GENERATE_H
|
|
#define GENERATE_H
|
|
|
|
|
|
int generate_box (sentry_t *thebox);
|
|
|
|
|
|
#endif /*GENERATE_H*/
|
|
|
|
/*EOF*/ /* vim: set cindent sw=4: */
|