]> git.sur5r.net Git - i3/i3/commitdiff
Add documentation for workspace_get()
authorMichael Stapelberg <michael@stapelberg.de>
Sun, 27 Sep 2009 13:20:47 +0000 (15:20 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Sun, 27 Sep 2009 13:20:47 +0000 (15:20 +0200)
include/workspace.h
src/workspace.c

index 6a17f5974738d5718b0c7fc92b14c6a1667f9420..9904627d513e0139de8512677015759d73d62305 100644 (file)
 #ifndef _WORKSPACE_H
 #define _WORKSPACE_H
 
-
+/**
+ * Returns a pointer to the workspace with the given number (starting at 0),
+ * creating the workspace if necessary (by allocating the necessary amount of
+ * memory and initializing the data structures correctly).
+ *
+ */
 Workspace *workspace_get(int number);
 
 /**
index c4f1ead199028dc961c9ca3c157d83c36f4dafee..b88e213bbbb664acbb7da46a2d646acbccc2d20c 100644 (file)
 #include "workspace.h"
 #include "client.h"
 
+/*
+ * Returns a pointer to the workspace with the given number (starting at 0),
+ * creating the workspace if necessary (by allocating the necessary amount of
+ * memory and initializing the data structures correctly).
+ *
+ */
 Workspace *workspace_get(int number) {
         if (number > (num_workspaces-1)) {
                 int old_num_workspaces = num_workspaces;