17 lines
343 B
C
17 lines
343 B
C
/*
|
|
* vim:ts=4:sw=4:expandtab
|
|
*
|
|
* i3 - an improved dynamic tiling window manager
|
|
* © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
|
|
*
|
|
* output.c: Output (monitor) related functions.
|
|
*
|
|
*/
|
|
#pragma once
|
|
|
|
/**
|
|
* Returns the output container below the given output container.
|
|
*
|
|
*/
|
|
Con *output_get_content(Con *output);
|