]> git.sur5r.net Git - i3/i3/blobdiff - include/move.h
libi3: free previous font on font load
[i3/i3] / include / move.h
index d0c97014034b831fcb06654ae5845c081a354140..939665ec41f09b73cb2be7cce20dc598a5dfb5fe 100644 (file)
@@ -1,15 +1,17 @@
 /*
  * vim:ts=4:sw=4:expandtab
+ *
+ * i3 - an improved dynamic tiling window manager
+ * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
+ *
+ * move.c: Moving containers into some direction.
+ *
  */
-
-#ifndef _MOVE_H
-#define _MOVE_H
+#pragma once
 
 /**
- * Moves the current container in the given direction (TOK_LEFT, TOK_RIGHT,
+ * Moves the given container in the given direction (TOK_LEFT, TOK_RIGHT,
  * TOK_UP, TOK_DOWN from cmdparse.l)
  *
  */
-void tree_move(int direction);
-
-#endif
+void tree_move(Con *con, int direction);