15 lines
195 B
C
15 lines
195 B
C
|
/*
|
||
|
* vim:ts=4:sw=4:expandtab
|
||
|
*/
|
||
|
|
||
|
#ifndef _OUTPUT_H
|
||
|
#define _OUTPUT_H
|
||
|
|
||
|
/**
|
||
|
* Returns the output container below the given output container.
|
||
|
*
|
||
|
*/
|
||
|
Con *output_get_content(Con *output);
|
||
|
|
||
|
#endif
|