]> git.sur5r.net Git - i3/i3/commitdiff
don’t use reversed identifiers for include guards (Thanks Markus)
authorMichael Stapelberg <michael@stapelberg.de>
Fri, 21 Sep 2012 13:36:25 +0000 (15:36 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Fri, 21 Sep 2012 13:36:25 +0000 (15:36 +0200)
Done with:

    sed -in 's/\(ifndef\|define\) _\([0-9A-Z_]*\)$/\1 I3_\2/' include/**/*.h

fixes #804

43 files changed:
include/all.h
include/assignments.h
include/click.h
include/cmdparse.h
include/commands.h
include/commands_parser.h
include/con.h
include/config.h
include/data.h
include/debug.h
include/display_version.h
include/ewmh.h
include/fake_outputs.h
include/floating.h
include/handlers.h
include/i3.h
include/i3/ipc.h
include/ipc.h
include/key_press.h
include/libi3.h
include/load_layout.h
include/log.h
include/manage.h
include/match.h
include/move.h
include/output.h
include/randr.h
include/regex.h
include/render.h
include/resize.h
include/scratchpad.h
include/shmlog.h
include/sighandler.h
include/startup.h
include/tree.h
include/util.h
include/window.h
include/workspace.h
include/x.h
include/xcb.h
include/xcb_compat.h
include/xcursor.h
include/xinerama.h

index b83b9f4e07df2c876a7c0e216a25dd5988822bae..48ca6621361e523ba93b78a6e6dd3b4cf5daf04f 100644 (file)
@@ -10,8 +10,8 @@
  * compile-time.
  *
  */
-#ifndef _ALL_H
-#define _ALL_H
+#ifndef I3_ALL_H
+#define I3_ALL_H
 
 #include <assert.h>
 #include <stdbool.h>
index f4ef8e88067afdb272fc1952d6101c272a37be2d..570375cf1874220a098f3212f9c0ac1faaecb6e9 100644 (file)
@@ -7,8 +7,8 @@
  * assignments.c: Assignments for specific windows (for_window).
  *
  */
-#ifndef _ASSIGNMENTS_H
-#define _ASSIGNMENTS_H
+#ifndef I3_ASSIGNMENTS_H
+#define I3_ASSIGNMENTS_H
 
 /**
  * Checks the list of assignments for the given window and runs all matching
index 6261613ba762c19dace78d9073f4f571d96a6f61..3c4d5288fdb8119a5e98086bdc1af15d1f625153 100644 (file)
@@ -7,8 +7,8 @@
  * click.c: Button press (mouse click) events.
  *
  */
-#ifndef _CLICK_H
-#define _CLICK_H
+#ifndef I3_CLICK_H
+#define I3_CLICK_H
 
 /**
  * The button press X callback. This function determines whether the floating
index d619b97c17932fe8966fb0b7f32c111b28df0926..4a87c39c8b266e73ca09002c3b1b4154d4738842 100644 (file)
@@ -7,8 +7,8 @@
  * cmdparse.y: the parser for commands you send to i3 (or bind on keys)
  *
  */
-#ifndef _CMDPARSE_H
-#define _CMDPARSE_H
+#ifndef I3_CMDPARSE_H
+#define I3_CMDPARSE_H
 
 char *parse_cmd(const char *new);
 
index 37ee98d9c6d797886b1500b5110b4da7300605c7..c971bb48de7f28e4f8602b4d3dd5191aec8f3fc5 100644 (file)
@@ -7,8 +7,8 @@
  * commands.c: all command functions (see commands_parser.c)
  *
  */
-#ifndef _COMMANDS_H
-#define _COMMANDS_H
+#ifndef I3_COMMANDS_H
+#define I3_COMMANDS_H
 
 #include "commands_parser.h"
 
index 795cb0265715c44a5d41319a561d161682dc490f..6ff8d54ea81a1ccdff2567fb3d9cc16ebec19d8d 100644 (file)
@@ -7,8 +7,8 @@
  * commands.c: all command functions (see commands_parser.c)
  *
  */
-#ifndef _COMMANDS_PARSER_H
-#define _COMMANDS_PARSER_H
+#ifndef I3_COMMANDS_PARSER_H
+#define I3_COMMANDS_PARSER_H
 
 #include <yajl/yajl_gen.h>
 
index 20e83df935bdf7501ec0da3a8c7918245d8f36a1..f741dee0c18885f5b58f7612fa945d91251cdf4d 100644 (file)
@@ -9,8 +9,8 @@
  *        …).
  *
  */
-#ifndef _CON_H
-#define _CON_H
+#ifndef I3_CON_H
+#define I3_CON_H
 
 /**
  * Create a new container (and attach it to the given parent, if not NULL).
index 1a48016a386ef635d8232afda17638ba112f867c..669cfe44db58b1b7b00a5837cb758dbce5789a57 100644 (file)
@@ -10,8 +10,8 @@
  * mode).
  *
  */
-#ifndef _CONFIG_H
-#define _CONFIG_H
+#ifndef I3_CONFIG_H
+#define I3_CONFIG_H
 
 #include <stdbool.h>
 #include "queue.h"
index 02f781c9356e0e06fb3ec8eb5bd56e2c53f5551e..a2c6859ed0f47bdcde3153a4bd3a2cd1bb410046 100644 (file)
@@ -7,8 +7,8 @@
  * include/data.h: This file defines all data structures used by i3
  *
  */
-#ifndef _DATA_H
-#define _DATA_H
+#ifndef I3_DATA_H
+#define I3_DATA_H
 
 #define SN_API_NOT_YET_FROZEN 1
 #include <libsn/sn-launcher.h>
index abf9c76dfe0b6692032c006312c2f3599bd0aefc..44c95c6d348627d9d9305e52360dd183d11d3ead 100644 (file)
@@ -8,8 +8,8 @@
  *          events.  This code is from xcb-util.
  *
  */
-#ifndef _DEBUG_H
-#define _DEBUG_H
+#ifndef I3_DEBUG_H
+#define I3_DEBUG_H
 
 int handle_event(void *ignored, xcb_connection_t *c, xcb_generic_event_t *e);
 
index 97b3902c95652fa82c575d487eb50d590f11c22d..88a1abc1e9cc1f8013d64d0373a927cc35d51896 100644 (file)
@@ -7,8 +7,8 @@
  * display_version.c: displays the running i3 version, runs as part of
  *                    i3 --moreversion.
  */
-#ifndef _DISPLAY_VERSION_H
-#define _DISPLAY_VERSION_H
+#ifndef I3_DISPLAY_VERSION_H
+#define I3_DISPLAY_VERSION_H
 
 /**
  * Connects to i3 to find out the currently running version. Useful since it
index a786069a337dc9cb8171d00a6ef160231a771e92..07ef6614a420bf4393202164bcc2b4cf3b5ae884 100644 (file)
@@ -7,8 +7,8 @@
  * ewmh.c: Get/set certain EWMH properties easily.
  *
  */
-#ifndef _EWMH_C
-#define _EWMH_C
+#ifndef I3_EWMH_C
+#define I3_EWMH_C
 
 /**
  * Updates _NET_CURRENT_DESKTOP with the current desktop number.
index adb10a0d2c448095f8d3c788d43f14b3a556dfbf..bfeba292470af38e800a553eec644becf3385a2f 100644 (file)
@@ -8,8 +8,8 @@
  * which don’t support multi-monitor in a useful way) and for our testsuite.
  *
  */
-#ifndef _FAKE_OUTPUTS_H
-#define _FAKE_OUTPUTS_H
+#ifndef I3_FAKE_OUTPUTS_H
+#define I3_FAKE_OUTPUTS_H
 
 /**
  * Creates outputs according to the given specification.
index 43137c9c7ed47ca174b850b1f54296760b2050b2..a2f501c50222248e30c9bb7dccb3412c7c25a044 100644 (file)
@@ -7,8 +7,8 @@
  * floating.c: Floating windows.
  *
  */
-#ifndef _FLOATING_H
-#define _FLOATING_H
+#ifndef I3_FLOATING_H
+#define I3_FLOATING_H
 
 #include "tree.h"
 
index bcebf9ff0901e38cff023f484a335ca517ad71c2..b2e7ce2e9288c3751486c22d3f4964734f351297 100644 (file)
@@ -8,8 +8,8 @@
  *             …).
  *
  */
-#ifndef _HANDLERS_H
-#define _HANDLERS_H
+#ifndef I3_HANDLERS_H
+#define I3_HANDLERS_H
 
 #include <xcb/randr.h>
 
index bd40f16b9eb8e79937d562937fab9fc743394a90..1bc8b55da13bd81a3b5aa6f93a1ee84c98a69016 100644 (file)
@@ -7,8 +7,8 @@
  * i3.h: global variables that are used all over i3.
  *
  */
-#ifndef _I3_H
-#define _I3_H
+#ifndef I3_I3_H
+#define I3_I3_H
 
 #include <sys/time.h>
 #include <sys/resource.h>
index 0906b7f919bbb98d1e21598557aec29b00b2ad7b..86fa1b4bb80389c2c9b3b54dc3ffeba76826c559 100644 (file)
@@ -8,8 +8,8 @@
  * for the IPC interface to i3 (see docs/ipc for more information).
  *
  */
-#ifndef _I3_IPC_H
-#define _I3_IPC_H
+#ifndef I3_I3_IPC_H
+#define I3_I3_IPC_H
 
 /*
  * Messages from clients to i3
index af80fa4bd18116bc071cf87f360bd577d850bc8c..ef50ba8630da305dd977d7d2a7482d313bdae7da 100644 (file)
@@ -7,8 +7,8 @@
  * ipc.c: UNIX domain socket IPC (initialization, client handling, protocol).
  *
  */
-#ifndef _IPC_H
-#define _IPC_H
+#ifndef I3_IPC_H
+#define I3_IPC_H
 
 #include <ev.h>
 #include <stdbool.h>
index 4d469babe8bb2869ffede445d8efc5163c625e8e..417843a10fbea0c1a5e7c202539d7811e53f36e3 100644 (file)
@@ -7,8 +7,8 @@
  * key_press.c: key press handler
  *
  */
-#ifndef _KEY_PRESS_H
-#define _KEY_PRESS_H
+#ifndef I3_KEY_PRESS_H
+#define I3_KEY_PRESS_H
 
 /**
  * There was a key press. We compare this key code with our bindings table and pass
index d4df901fe4cde7400a895d4d2e6d585f93590a92..7547845b9bf2245a97242badd9bcd6d7c9ff8e7f 100644 (file)
@@ -8,8 +8,8 @@
  * as i3-msg, i3-config-wizard, …
  *
  */
-#ifndef _LIBI3_H
-#define _LIBI3_H
+#ifndef I3_LIBI3_H
+#define I3_LIBI3_H
 
 #include <stdbool.h>
 #include <stdarg.h>
index a2cd6d149d53f717ecdeb16ebbe3ee23171661f8..282512b2454e1be458e40d41538a2473817dd6d4 100644 (file)
@@ -8,8 +8,8 @@
  *                restart.
  *
  */
-#ifndef _LOAD_LAYOUT_H
-#define _LOAD_LAYOUT_H
+#ifndef I3_LOAD_LAYOUT_H
+#define I3_LOAD_LAYOUT_H
 
 void tree_append_json(const char *filename);
 
index 7822fba50f66b9ba51943e2eef62776bfc3e799d..6fabeca339fdd3283a35e039a6fd2c7922f1e697 100644 (file)
@@ -7,8 +7,8 @@
  * log.c: Logging functions.
  *
  */
-#ifndef _LOG_H
-#define _LOG_H
+#ifndef I3_LOG_H
+#define I3_LOG_H
 
 #include <stdarg.h>
 #include <stdbool.h>
index c16d295f6c3eabd53b0604a2fd1c81a39c80962a..d50f64d49b67efa9a7f538025edd2f5c09b1100e 100644 (file)
@@ -7,8 +7,8 @@
  * manage.c: Initially managing new windows (or existing ones on restart).
  *
  */
-#ifndef _MANAGE_H
-#define _MANAGE_H
+#ifndef I3_MANAGE_H
+#define I3_MANAGE_H
 
 #include "data.h"
 
index 6d9cb91539f4219cbfd5fc8ed9081dca2e5591db..e1d259040dfddbd10546bec6469e8df7a7543ee3 100644 (file)
@@ -11,8 +11,8 @@
  * match_matches_window() to find the windows affected by this command.
  *
  */
-#ifndef _MATCH_H
-#define _MATCH_H
+#ifndef I3_MATCH_H
+#define I3_MATCH_H
 
 /*
  * Initializes the Match data structure. This function is necessary because the
index 22b6e809ef05b558a475ea8a7bfa5fb476a6e015..d45e676e4d52b5e8b8b7c6cef919f17321dea2d9 100644 (file)
@@ -7,8 +7,8 @@
  * move.c: Moving containers into some direction.
  *
  */
-#ifndef _MOVE_H
-#define _MOVE_H
+#ifndef I3_MOVE_H
+#define I3_MOVE_H
 
 /**
  * Moves the current container in the given direction (TOK_LEFT, TOK_RIGHT,
index d488ad30c4baef8b67c7654bd4da0ddccffead3b..e87da22e063b1314bffebb349b6764a079006013 100644 (file)
@@ -7,8 +7,8 @@
  * output.c: Output (monitor) related functions.
  *
  */
-#ifndef _OUTPUT_H
-#define _OUTPUT_H
+#ifndef I3_OUTPUT_H
+#define I3_OUTPUT_H
 
 /**
  * Returns the output container below the given output container.
index ac527bcc9cc86feb45336686dbd63959646a4a05..019e1f7440092985922c283453b4c90d3ffee991 100644 (file)
@@ -9,8 +9,8 @@
  * (take your time to read it completely, it answers all questions).
  *
  */
-#ifndef _RANDR_H
-#define _RANDR_H
+#ifndef I3_RANDR_H
+#define I3_RANDR_H
 
 #include "data.h"
 #include <xcb/randr.h>
index fe1e9f9537f47dcb13d029618763362c2048d054..7403abefb9dda55cf5431fe20c9c5d9f0602775e 100644 (file)
@@ -7,8 +7,8 @@
  * regex.c: Interface to libPCRE (perl compatible regular expressions).
  *
  */
-#ifndef _REGEX_H
-#define _REGEX_H
+#ifndef I3_REGEX_H
+#define I3_REGEX_H
 
 /**
  * Creates a new 'regex' struct containing the given pattern and a PCRE
index 1f31fb0f962e2bbc367dbd1240bbf3307ecd0e9d..0a5949f9fab35dc029b076cdd3d1407f38edac2d 100644 (file)
@@ -8,8 +8,8 @@
  *           various rects. Needs to be pushed to X11 (see x.c) to be visible.
  *
  */
-#ifndef _RENDER_H
-#define _RENDER_H
+#ifndef I3_RENDER_H
+#define I3_RENDER_H
 
 /**
  * "Renders" the given container (and its children), meaning that all rects are
index 99646ea087a857b07d6412e24ec72dd74f6cf4d3..fa0216c88ac3597e45193a32d7b1376e874d9860 100644 (file)
@@ -7,8 +7,8 @@
  * resize.c: Interactive resizing.
  *
  */
-#ifndef _RESIZE_H
-#define _RESIZE_H
+#ifndef I3_RESIZE_H
+#define I3_RESIZE_H
 
 int resize_graphical_handler(Con *first, Con *second, orientation_t orientation, const xcb_button_press_event_t *event);
 
index 4d5533273983b1a8a11b8bc6d357fcdbd569fac2..c6157052ff5c9017d38b057137ba91670ddfa125 100644 (file)
@@ -7,8 +7,8 @@
  * scratchpad.c: Scratchpad functions (TODO: more description)
  *
  */
-#ifndef _SCRATCHPAD_H
-#define _SCRATCHPAD_H
+#ifndef I3_SCRATCHPAD_H
+#define I3_SCRATCHPAD_H
 
 /**
  * Moves the specified window to the __i3_scratch workspace, making it floating
index e755d2f139cdc003e9d5fc655d7aec7c882bd79a..fd3f53ebfac73a0ef60ea9f688c9126498626140 100644 (file)
@@ -8,8 +8,8 @@
  * default (ringbuffer for storing the debug log).
  *
  */
-#ifndef _I3_SHMLOG_H
-#define _I3_SHMLOG_H
+#ifndef I3_I3_SHMLOG_H
+#define I3_I3_SHMLOG_H
 
 #include <stdint.h>
 #include <pthread.h>
index 571070b04230079a1ae606400d1346ae8bb688fc..25d3385bc1e1cfec27e1f5bcd053966ccba6184e 100644 (file)
@@ -9,8 +9,8 @@
  *               to restart inplace).
  *
  */
-#ifndef _SIGHANDLER_H
-#define _SIGHANDLER_H
+#ifndef I3_SIGHANDLER_H
+#define I3_SIGHANDLER_H
 
 /**
  * Setup signal handlers to safely handle SIGSEGV and SIGFPE
index 290c8d21cf4f72db53d72dc7650fa5c0ea6c1414..bcc59a0a67104e34d30e45f481884354e66bc994 100644 (file)
@@ -10,8 +10,8 @@
  *            the appropriate workspace.
  *
  */
-#ifndef _STARTUP_H
-#define _STARTUP_H
+#ifndef I3_STARTUP_H
+#define I3_STARTUP_H
 
 #define SN_API_NOT_YET_FROZEN 1
 #include <libsn/sn-monitor.h>
index 8816b19a640a55d0fa84300bdd59295c56c24943..2799afee5fdf452b179dd8a597d3a539f40be929 100644 (file)
@@ -7,8 +7,8 @@
  * tree.c: Everything that primarily modifies the layout tree data structure.
  *
  */
-#ifndef _TREE_H
-#define _TREE_H
+#ifndef I3_TREE_H
+#define I3_TREE_H
 
 extern Con *croot;
 /* TODO: i am not sure yet how much access to the focused container should
index cd88863c282a90b976bd9ba02fb6b4c3c58ef3ca..e397a4e80ac37bbc77e230c6b497f12b3f33b638 100644 (file)
@@ -8,8 +8,8 @@
  *         also libi3).
  *
  */
-#ifndef _UTIL_H
-#define _UTIL_H
+#ifndef I3_UTIL_H
+#define I3_UTIL_H
 
 #include <err.h>
 
index 60198b878f3517e04addc9c33744d4e06ef16d49..59d3b1bbd97a3bc1401b6bda614bb23c89b6b11b 100644 (file)
@@ -7,8 +7,8 @@
  * window.c: Updates window attributes (X11 hints/properties).
  *
  */
-#ifndef _WINDOW_H
-#define _WINDOW_H
+#ifndef I3_WINDOW_H
+#define I3_WINDOW_H
 
 /**
  * Updates the WM_CLASS (consisting of the class and instance) for the
index 1b25b425f4d21b5e4fe0f5e5ab08fd34174f23bf..ad780f1f2013146c86e93f5925d51fed78d125b3 100644 (file)
@@ -8,8 +8,8 @@
  *              workspaces.
  *
  */
-#ifndef _WORKSPACE_H
-#define _WORKSPACE_H
+#ifndef I3_WORKSPACE_H
+#define I3_WORKSPACE_H
 
 #include "data.h"
 #include "tree.h"
index cb4a8a964d32823ab74dd1161c1469648ba5ea38..c3d4ffc7cc29f5bac0194aa9ca401f469ee70e8e 100644 (file)
@@ -8,8 +8,8 @@
  *      render.c). Basically a big state machine.
  *
  */
-#ifndef _X_H
-#define _X_H
+#ifndef I3_X_H
+#define I3_X_H
 
 /** Stores the X11 window ID of the currently focused window */
 extern xcb_window_t focused_id;
index 269038daef0926885056185f49005cbabcc61a0d..15d3e28fc4e1e81dbd8020fcd960ce6ba9b3f739 100644 (file)
@@ -7,8 +7,8 @@
  * xcb.c: Helper functions for easier usage of XCB
  *
  */
-#ifndef _XCB_H
-#define _XCB_H
+#ifndef I3_XCB_H
+#define I3_XCB_H
 
 #include "data.h"
 #include "xcursor.h"
index 9c2660b72b220d67d4e2d7a8d22a7ad3301e96b9..fc09a254323953afb13a7ed76147e0e988f6d719 100644 (file)
@@ -9,8 +9,8 @@
  *               older versions.
  *
  */
-#ifndef _XCB_COMPAT_H
-#define _XCB_COMPAT_H
+#ifndef I3_XCB_COMPAT_H
+#define I3_XCB_COMPAT_H
 
 #define xcb_icccm_get_wm_protocols_reply_t xcb_get_wm_protocols_reply_t
 #define xcb_icccm_get_wm_protocols xcb_get_wm_protocols
index c341f90ba6b77e6a2bfc028abb13528e2cc96b00..fba82ad3011ae69907844b899c696aafa572430a 100644 (file)
@@ -7,8 +7,8 @@
  * xcursor.c: libXcursor support for themed cursors.
  *
  */
-#ifndef _XCURSOR_CURSOR_H
-#define _XCURSOR_CURSOR_H
+#ifndef I3_XCURSOR_CURSOR_H
+#define I3_XCURSOR_CURSOR_H
 
 #include <X11/Xlib.h>
 
index 8c879c07fb7329c38b0c7fe8b2c5419a557d6cd7..ca7c2ab538a3938b42a6efdaaabc1bcb0833b047 100644 (file)
@@ -9,8 +9,8 @@
  * driver which does not support RandR in 2011 *sigh*.
  *
  */
-#ifndef _XINERAMA_H
-#define _XINERAMA_H
+#ifndef I3_XINERAMA_H
+#define I3_XINERAMA_H
 
 #include "data.h"