Use #pragma once

#pragma once is safer and simpler. According to Wikipedia it's supported by all major compilers.
This commit is contained in:
Alexander Kedrik 2013-12-29 06:11:50 +04:00 committed by Michael Stapelberg
parent 67b213665b
commit e2ebe3e2ae
64 changed files with 64 additions and 254 deletions

View File

@ -1,5 +1,4 @@
#ifndef I3_XCB_H #pragma once
#define I3_XCB_H
/* from X11/keysymdef.h */ /* from X11/keysymdef.h */
#define XCB_NUM_LOCK 0xff7f #define XCB_NUM_LOCK 0xff7f
@ -7,5 +6,3 @@
#define xmacro(atom) xcb_atom_t A_ ## atom; #define xmacro(atom) xcb_atom_t A_ ## atom;
#include "atoms.xmacro" #include "atoms.xmacro"
#undef xmacro #undef xmacro
#endif

View File

@ -1,5 +1,4 @@
#ifndef I3_INPUT #pragma once
#define I3_INPUT
#include <err.h> #include <err.h>
@ -13,5 +12,3 @@
while (0) while (0)
extern xcb_window_t root; extern xcb_window_t root;
#endif

View File

@ -1,5 +1,4 @@
#ifndef I3_NAGBAR #pragma once
#define I3_NAGBAR
#include <err.h> #include <err.h>
@ -17,5 +16,3 @@ while (0)
#undef xmacro #undef xmacro
extern xcb_window_t root; extern xcb_window_t root;
#endif

View File

@ -7,8 +7,7 @@
* child.c: Getting Input for the statusline * child.c: Getting Input for the statusline
* *
*/ */
#ifndef CHILD_H_ #pragma once
#define CHILD_H_
#include <stdbool.h> #include <stdbool.h>
@ -79,5 +78,3 @@ void cont_child(void);
* *
*/ */
void send_block_clicked(int button, const char *name, const char *instance, int x, int y); void send_block_clicked(int button, const char *name, const char *instance, int x, int y);
#endif

View File

@ -5,8 +5,7 @@
* © 2010-2011 Axel Wagner and contributors (see also: LICENSE) * © 2010-2011 Axel Wagner and contributors (see also: LICENSE)
* *
*/ */
#ifndef COMMON_H_ #pragma once
#define COMMON_H_
#include <stdbool.h> #include <stdbool.h>
#include <xcb/xcb.h> #include <xcb/xcb.h>
@ -74,5 +73,3 @@ TAILQ_HEAD(statusline_head, status_block) statusline_head;
#include "config.h" #include "config.h"
#include "libi3.h" #include "libi3.h"
#include "parse_json_header.h" #include "parse_json_header.h"
#endif

View File

@ -7,8 +7,7 @@
* config.c: Parses the configuration (received from i3). * config.c: Parses the configuration (received from i3).
* *
*/ */
#ifndef CONFIG_H_ #pragma once
#define CONFIG_H_
#include "common.h" #include "common.h"
@ -52,5 +51,3 @@ void parse_config_json(char *json);
* *
*/ */
void free_colors(struct xcb_color_strings_t *colors); void free_colors(struct xcb_color_strings_t *colors);
#endif

View File

@ -7,8 +7,7 @@
* ipc.c: Communicating with i3 * ipc.c: Communicating with i3
* *
*/ */
#ifndef IPC_H_ #pragma once
#define IPC_H_
#include <stdint.h> #include <stdint.h>
@ -37,5 +36,3 @@ int i3_send_msg(uint32_t type, const char* payload);
* *
*/ */
void subscribe_events(void); void subscribe_events(void);
#endif

View File

@ -7,8 +7,7 @@
* mode.c: Handle mode-event and show current binding mode in the bar * mode.c: Handle mode-event and show current binding mode in the bar
* *
*/ */
#ifndef MODE_H_ #pragma once
#define MODE_H_
#include <xcb/xproto.h> #include <xcb/xproto.h>
@ -27,5 +26,3 @@ typedef struct mode mode;
* *
*/ */
void parse_mode_json(char *json); void parse_mode_json(char *json);
#endif

View File

@ -7,8 +7,7 @@
* outputs.c: Maintaining the output-list * outputs.c: Maintaining the output-list
* *
*/ */
#ifndef OUTPUTS_H_ #pragma once
#define OUTPUTS_H_
#include <xcb/xcb.h> #include <xcb/xcb.h>
@ -53,5 +52,3 @@ struct i3_output {
SLIST_ENTRY(i3_output) slist; /* Pointer for the SLIST-Macro */ SLIST_ENTRY(i3_output) slist; /* Pointer for the SLIST-Macro */
}; };
#endif

View File

@ -8,8 +8,7 @@
* protocol version and features. * protocol version and features.
* *
*/ */
#ifndef PARSE_JSON_HEADER_H_ #pragma once
#define PARSE_JSON_HEADER_H_
#include <stdint.h> #include <stdint.h>
@ -22,5 +21,3 @@
* *
*/ */
void parse_json_header(i3bar_child *child, const unsigned char *buffer, int length, unsigned int *consumed); void parse_json_header(i3bar_child *child, const unsigned char *buffer, int length, unsigned int *consumed);
#endif

View File

@ -5,8 +5,7 @@
* © 2010-2011 Axel Wagner and contributors (see also: LICENSE) * © 2010-2011 Axel Wagner and contributors (see also: LICENSE)
* *
*/ */
#ifndef TRAYCLIENT_H_ #pragma once
#define TRAYCLIENT_H_
#include "common.h" #include "common.h"
@ -21,5 +20,3 @@ struct trayclient {
TAILQ_ENTRY(trayclient) tailq; /* Pointer for the TAILQ-Macro */ TAILQ_ENTRY(trayclient) tailq; /* Pointer for the TAILQ-Macro */
}; };
#endif

View File

@ -5,8 +5,7 @@
* © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE) * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
* *
*/ */
#ifndef UTIL_H_ #pragma once
#define UTIL_H_
#include "queue.h" #include "queue.h"
@ -36,8 +35,6 @@
} \ } \
} while (0) } while (0)
#endif
/* Securely fee tail-queues */ /* Securely fee tail-queues */
#define FREE_TAILQ(l, type) do { \ #define FREE_TAILQ(l, type) do { \
type *walk = TAILQ_FIRST(l); \ type *walk = TAILQ_FIRST(l); \

View File

@ -7,8 +7,7 @@
* workspaces.c: Maintaining the workspace-lists * workspaces.c: Maintaining the workspace-lists
* *
*/ */
#ifndef WORKSPACES_H_ #pragma once
#define WORKSPACES_H_
#include <xcb/xproto.h> #include <xcb/xproto.h>
@ -42,5 +41,3 @@ struct i3_ws {
TAILQ_ENTRY(i3_ws) tailq; /* Pointer for the TAILQ-Macro */ TAILQ_ENTRY(i3_ws) tailq; /* Pointer for the TAILQ-Macro */
}; };
#endif

View File

@ -7,8 +7,7 @@
* xcb.c: Communicating with X * xcb.c: Communicating with X
* *
*/ */
#ifndef XCB_H_ #pragma once
#define XCB_H_
#include <stdint.h> #include <stdint.h>
//#include "outputs.h" //#include "outputs.h"
@ -133,5 +132,3 @@ void redraw_bars(void);
* *
*/ */
void set_current_mode(struct mode *mode); void set_current_mode(struct mode *mode);
#endif

View File

@ -7,8 +7,7 @@
* assignments.c: Assignments for specific windows (for_window). * assignments.c: Assignments for specific windows (for_window).
* *
*/ */
#ifndef I3_ASSIGNMENTS_H #pragma once
#define I3_ASSIGNMENTS_H
/** /**
* Checks the list of assignments for the given window and runs all matching * Checks the list of assignments for the given window and runs all matching
@ -22,5 +21,3 @@ void run_assignments(i3Window *window);
* *
*/ */
Assignment *assignment_for(i3Window *window, int type); Assignment *assignment_for(i3Window *window, int type);
#endif

View File

@ -7,8 +7,7 @@
* click.c: Button press (mouse click) events. * click.c: Button press (mouse click) events.
* *
*/ */
#ifndef I3_CLICK_H #pragma once
#define I3_CLICK_H
/** /**
* The button press X callback. This function determines whether the floating * The button press X callback. This function determines whether the floating
@ -19,5 +18,3 @@
* *
*/ */
int handle_button_press(xcb_button_press_event_t *event); int handle_button_press(xcb_button_press_event_t *event);
#endif

View File

@ -7,9 +7,6 @@
* cmdparse.y: the parser for commands you send to i3 (or bind on keys) * cmdparse.y: the parser for commands you send to i3 (or bind on keys)
* *
*/ */
#ifndef I3_CMDPARSE_H #pragma once
#define I3_CMDPARSE_H
char *parse_cmd(const char *new); char *parse_cmd(const char *new);
#endif

View File

@ -7,8 +7,7 @@
* commands.c: all command functions (see commands_parser.c) * commands.c: all command functions (see commands_parser.c)
* *
*/ */
#ifndef I3_COMMANDS_H #pragma once
#define I3_COMMANDS_H
#include "commands_parser.h" #include "commands_parser.h"
@ -288,5 +287,3 @@ void cmd_shmlog(I3_CMD, char *argument);
* *
*/ */
void cmd_debuglog(I3_CMD, char *argument); void cmd_debuglog(I3_CMD, char *argument);
#endif

View File

@ -7,8 +7,7 @@
* commands.c: all command functions (see commands_parser.c) * commands.c: all command functions (see commands_parser.c)
* *
*/ */
#ifndef I3_COMMANDS_PARSER_H #pragma once
#define I3_COMMANDS_PARSER_H
#include <yajl/yajl_gen.h> #include <yajl/yajl_gen.h>
@ -35,5 +34,3 @@ struct CommandResult {
}; };
struct CommandResult *parse_command(const char *input); struct CommandResult *parse_command(const char *input);
#endif

View File

@ -9,8 +9,7 @@
* ). * ).
* *
*/ */
#ifndef I3_CON_H #pragma once
#define I3_CON_H
/** /**
* Create a new container (and attach it to the given parent, if not NULL). * Create a new container (and attach it to the given parent, if not NULL).
@ -340,5 +339,3 @@ void con_set_urgency(Con *con, bool urgent);
* *
*/ */
char *con_get_tree_representation(Con *con); char *con_get_tree_representation(Con *con);
#endif

View File

@ -10,8 +10,7 @@
* bindings mode). * bindings mode).
* *
*/ */
#ifndef I3_CONFIG_H #pragma once
#define I3_CONFIG_H
#include <stdbool.h> #include <stdbool.h>
#include "queue.h" #include "queue.h"
@ -357,5 +356,3 @@ Binding *get_binding(uint16_t modifiers, bool key_release, xcb_keycode_t keycode
* *
*/ */
void kill_configerror_nagbar(bool wait_for_it); void kill_configerror_nagbar(bool wait_for_it);
#endif

View File

@ -7,8 +7,7 @@
* config_directives.h: all config storing functions (see config_parser.c) * config_directives.h: all config storing functions (see config_parser.c)
* *
*/ */
#ifndef I3_CONFIG_DIRECTIVES_H #pragma once
#define I3_CONFIG_DIRECTIVES_H
#include "config_parser.h" #include "config_parser.h"
@ -77,5 +76,3 @@ CFGFUN(bar_status_command, const char *command);
CFGFUN(bar_binding_mode_indicator, const char *value); CFGFUN(bar_binding_mode_indicator, const char *value);
CFGFUN(bar_workspace_buttons, const char *value); CFGFUN(bar_workspace_buttons, const char *value);
CFGFUN(bar_finish); CFGFUN(bar_finish);
#endif

View File

@ -7,8 +7,7 @@
* config_parser.h: config parser-related definitions * config_parser.h: config parser-related definitions
* *
*/ */
#ifndef I3_CONFIG_PARSER_H #pragma once
#define I3_CONFIG_PARSER_H
#include <yajl/yajl_gen.h> #include <yajl/yajl_gen.h>
@ -37,5 +36,3 @@ struct ConfigResult *parse_config(const char *input, struct context *context);
* *
*/ */
void parse_file(const char *f); void parse_file(const char *f);
#endif

View File

@ -7,8 +7,7 @@
* include/data.h: This file defines all data structures used by i3 * include/data.h: This file defines all data structures used by i3
* *
*/ */
#ifndef I3_DATA_H #pragma once
#define I3_DATA_H
#define SN_API_NOT_YET_FROZEN 1 #define SN_API_NOT_YET_FROZEN 1
#include <libsn/sn-launcher.h> #include <libsn/sn-launcher.h>
@ -595,5 +594,3 @@ struct Con {
/* Depth of the container window */ /* Depth of the container window */
uint16_t depth; uint16_t depth;
}; };
#endif

View File

@ -8,9 +8,6 @@
* events. This code is from xcb-util. * events. This code is from xcb-util.
* *
*/ */
#ifndef I3_DEBUG_H #pragma once
#define I3_DEBUG_H
int handle_event(void *ignored, xcb_connection_t *c, xcb_generic_event_t *e); int handle_event(void *ignored, xcb_connection_t *c, xcb_generic_event_t *e);
#endif

View File

@ -7,8 +7,7 @@
* display_version.c: displays the running i3 version, runs as part of * display_version.c: displays the running i3 version, runs as part of
* i3 --moreversion. * i3 --moreversion.
*/ */
#ifndef I3_DISPLAY_VERSION_H #pragma once
#define I3_DISPLAY_VERSION_H
/** /**
* Connects to i3 to find out the currently running version. Useful since it * Connects to i3 to find out the currently running version. Useful since it
@ -23,5 +22,3 @@
* *
*/ */
void display_running_version(void); void display_running_version(void);
#endif

View File

@ -7,8 +7,7 @@
* ewmh.c: Get/set certain EWMH properties easily. * ewmh.c: Get/set certain EWMH properties easily.
* *
*/ */
#ifndef I3_EWMH_C #pragma once
#define I3_EWMH_C
/** /**
* Updates _NET_CURRENT_DESKTOP with the current desktop number. * Updates _NET_CURRENT_DESKTOP with the current desktop number.
@ -62,5 +61,3 @@ void ewmh_setup_hints(void);
* *
*/ */
void ewmh_update_workarea(void); void ewmh_update_workarea(void);
#endif

View File

@ -8,8 +8,7 @@
* which dont support multi-monitor in a useful way) and for our testsuite. * which dont support multi-monitor in a useful way) and for our testsuite.
* *
*/ */
#ifndef I3_FAKE_OUTPUTS_H #pragma once
#define I3_FAKE_OUTPUTS_H
/** /**
* Creates outputs according to the given specification. * Creates outputs according to the given specification.
@ -19,5 +18,3 @@
* *
*/ */
void fake_outputs_init(const char *output_spec); void fake_outputs_init(const char *output_spec);
#endif

View File

@ -7,8 +7,7 @@
* floating.c: Floating windows. * floating.c: Floating windows.
* *
*/ */
#ifndef I3_FLOATING_H #pragma once
#define I3_FLOATING_H
#include "tree.h" #include "tree.h"
@ -183,5 +182,3 @@ void floating_reposition(Con *con, Rect newrect);
* *
*/ */
void floating_fix_coordinates(Con *con, Rect *old_rect, Rect *new_rect); void floating_fix_coordinates(Con *con, Rect *old_rect, Rect *new_rect);
#endif

View File

@ -8,8 +8,7 @@
* ). * ).
* *
*/ */
#ifndef I3_HANDLERS_H #pragma once
#define I3_HANDLERS_H
#include <xcb/randr.h> #include <xcb/randr.h>
@ -63,5 +62,3 @@ int handle_window_type(void *data, xcb_connection_t *conn, uint8_t state,
xcb_window_t window, xcb_atom_t atom, xcb_window_t window, xcb_atom_t atom,
xcb_get_property_reply_t *property); xcb_get_property_reply_t *property);
#endif #endif
#endif

View File

@ -7,8 +7,7 @@
* i3.h: global variables that are used all over i3. * i3.h: global variables that are used all over i3.
* *
*/ */
#ifndef I3_I3_H #pragma once
#define I3_I3_H
#include <sys/time.h> #include <sys/time.h>
#include <sys/resource.h> #include <sys/resource.h>
@ -62,5 +61,3 @@ extern bool xcursor_supported, xkb_supported;
extern xcb_window_t root; extern xcb_window_t root;
extern struct ev_loop *main_loop; extern struct ev_loop *main_loop;
extern bool only_check_config; extern bool only_check_config;
#endif

View File

@ -8,8 +8,7 @@
* for the IPC interface to i3 (see docs/ipc for more information). * for the IPC interface to i3 (see docs/ipc for more information).
* *
*/ */
#ifndef I3_I3_IPC_H #pragma once
#define I3_I3_IPC_H
#include <stdint.h> #include <stdint.h>
@ -101,5 +100,3 @@ typedef struct i3_ipc_header {
/** Bar config update will be triggered to update the bar config */ /** Bar config update will be triggered to update the bar config */
#define I3_IPC_EVENT_BARCONFIG_UPDATE (I3_IPC_EVENT_MASK | 4) #define I3_IPC_EVENT_BARCONFIG_UPDATE (I3_IPC_EVENT_MASK | 4)
#endif

View File

@ -7,8 +7,7 @@
* ipc.c: UNIX domain socket IPC (initialization, client handling, protocol). * ipc.c: UNIX domain socket IPC (initialization, client handling, protocol).
* *
*/ */
#ifndef I3_IPC_H #pragma once
#define I3_IPC_H
#include <ev.h> #include <ev.h>
#include <stdbool.h> #include <stdbool.h>
@ -81,5 +80,3 @@ void ipc_send_event(const char *event, uint32_t message_type, const char *payloa
void ipc_shutdown(void); void ipc_shutdown(void);
void dump_node(yajl_gen gen, Con *con, bool inplace_restart); void dump_node(yajl_gen gen, Con *con, bool inplace_restart);
#endif

View File

@ -7,8 +7,7 @@
* key_press.c: key press handler * key_press.c: key press handler
* *
*/ */
#ifndef I3_KEY_PRESS_H #pragma once
#define I3_KEY_PRESS_H
extern pid_t command_error_nagbar_pid; extern pid_t command_error_nagbar_pid;
@ -30,5 +29,3 @@ void handle_key_press(xcb_key_press_event_t *event);
* *
*/ */
void kill_commanderror_nagbar(bool wait_for_it); void kill_commanderror_nagbar(bool wait_for_it);
#endif

View File

@ -8,8 +8,7 @@
* as i3-msg, i3-config-wizard, * as i3-msg, i3-config-wizard,
* *
*/ */
#ifndef I3_LIBI3_H #pragma once
#define I3_LIBI3_H
#include <stdbool.h> #include <stdbool.h>
#include <stdarg.h> #include <stdarg.h>
@ -382,5 +381,3 @@ char *get_process_filename(const char *prefix);
* Returned value must be freed by the caller. * Returned value must be freed by the caller.
*/ */
char *get_exe_path(const char *argv0); char *get_exe_path(const char *argv0);
#endif

View File

@ -8,9 +8,6 @@
* restart. * restart.
* *
*/ */
#ifndef I3_LOAD_LAYOUT_H #pragma once
#define I3_LOAD_LAYOUT_H
void tree_append_json(const char *filename); void tree_append_json(const char *filename);
#endif

View File

@ -7,8 +7,7 @@
* log.c: Logging functions. * log.c: Logging functions.
* *
*/ */
#ifndef I3_LOG_H #pragma once
#define I3_LOG_H
#include <stdarg.h> #include <stdarg.h>
#include <stdbool.h> #include <stdbool.h>
@ -102,5 +101,3 @@ void verboselog(char *fmt, ...)
* failures. This function is invoked automatically when exiting. * failures. This function is invoked automatically when exiting.
*/ */
void purge_zerobyte_logfile(void); void purge_zerobyte_logfile(void);
#endif

View File

@ -7,8 +7,7 @@
* main.c: Initialization, main loop * main.c: Initialization, main loop
* *
*/ */
#ifndef I3_MAIN_H #pragma once
#define I3_MAIN_H
/** /**
* Enable or disable the main X11 event handling function. * Enable or disable the main X11 event handling function.
@ -17,5 +16,3 @@
* *
*/ */
void main_set_x11_cb(bool enable); void main_set_x11_cb(bool enable);
#endif

View File

@ -7,8 +7,7 @@
* manage.c: Initially managing new windows (or existing ones on restart). * manage.c: Initially managing new windows (or existing ones on restart).
* *
*/ */
#ifndef I3_MANAGE_H #pragma once
#define I3_MANAGE_H
#include "data.h" #include "data.h"
@ -52,4 +51,3 @@ void reparent_window(xcb_connection_t *conn, xcb_window_t child,
uint32_t border_width); uint32_t border_width);
#endif #endif
#endif

View File

@ -11,8 +11,7 @@
* match_matches_window() to find the windows affected by this command. * match_matches_window() to find the windows affected by this command.
* *
*/ */
#ifndef I3_MATCH_H #pragma once
#define I3_MATCH_H
/* /*
* Initializes the Match data structure. This function is necessary because the * Initializes the Match data structure. This function is necessary because the
@ -46,5 +45,3 @@ bool match_matches_window(Match *match, i3Window *window);
* *
*/ */
void match_free(Match *match); void match_free(Match *match);
#endif

View File

@ -7,8 +7,7 @@
* move.c: Moving containers into some direction. * move.c: Moving containers into some direction.
* *
*/ */
#ifndef I3_MOVE_H #pragma once
#define I3_MOVE_H
/** /**
* Moves the current container in the given direction (TOK_LEFT, TOK_RIGHT, * Moves the current container in the given direction (TOK_LEFT, TOK_RIGHT,
@ -16,5 +15,3 @@
* *
*/ */
void tree_move(int direction); void tree_move(int direction);
#endif

View File

@ -7,13 +7,10 @@
* output.c: Output (monitor) related functions. * output.c: Output (monitor) related functions.
* *
*/ */
#ifndef I3_OUTPUT_H #pragma once
#define I3_OUTPUT_H
/** /**
* Returns the output container below the given output container. * Returns the output container below the given output container.
* *
*/ */
Con *output_get_content(Con *output); Con *output_get_content(Con *output);
#endif

View File

@ -32,8 +32,7 @@
* @(#)queue.h 8.5 (Berkeley) 8/20/94 * @(#)queue.h 8.5 (Berkeley) 8/20/94
*/ */
#ifndef _SYS_QUEUE_H_ #pragma once
#define _SYS_QUEUE_H_
/* /*
* This file defines five types of data structures: singly-linked lists, * This file defines five types of data structures: singly-linked lists,
@ -536,5 +535,3 @@ struct { \
_Q_INVALIDATE((elm)->field.cqe_prev); \ _Q_INVALIDATE((elm)->field.cqe_prev); \
_Q_INVALIDATE((elm)->field.cqe_next); \ _Q_INVALIDATE((elm)->field.cqe_next); \
} while (0) } while (0)
#endif /* !_SYS_QUEUE_H_ */

View File

@ -9,8 +9,7 @@
* (take your time to read it completely, it answers all questions). * (take your time to read it completely, it answers all questions).
* *
*/ */
#ifndef I3_RANDR_H #pragma once
#define I3_RANDR_H
#include "data.h" #include "data.h"
#include <xcb/randr.h> #include <xcb/randr.h>
@ -121,5 +120,3 @@ Output *get_output_next(direction_t direction, Output *current, output_close_far
* *
*/ */
Output *get_output_next_wrap(direction_t direction, Output *current); Output *get_output_next_wrap(direction_t direction, Output *current);
#endif

View File

@ -7,8 +7,7 @@
* regex.c: Interface to libPCRE (perl compatible regular expressions). * regex.c: Interface to libPCRE (perl compatible regular expressions).
* *
*/ */
#ifndef I3_REGEX_H #pragma once
#define I3_REGEX_H
/** /**
* Creates a new 'regex' struct containing the given pattern and a PCRE * Creates a new 'regex' struct containing the given pattern and a PCRE
@ -35,5 +34,3 @@ void regex_free(struct regex *regex);
* *
*/ */
bool regex_matches(struct regex *regex, const char *input); bool regex_matches(struct regex *regex, const char *input);
#endif

View File

@ -8,8 +8,7 @@
* various rects. Needs to be pushed to X11 (see x.c) to be visible. * various rects. Needs to be pushed to X11 (see x.c) to be visible.
* *
*/ */
#ifndef I3_RENDER_H #pragma once
#define I3_RENDER_H
/** /**
* "Renders" the given container (and its children), meaning that all rects are * "Renders" the given container (and its children), meaning that all rects are
@ -25,5 +24,3 @@ void render_con(Con *con, bool render_fullscreen);
* Returns the height for the decorations * Returns the height for the decorations
*/ */
int render_deco_height(void); int render_deco_height(void);
#endif

View File

@ -7,11 +7,8 @@
* resize.c: Interactive resizing. * resize.c: Interactive resizing.
* *
*/ */
#ifndef I3_RESIZE_H #pragma once
#define I3_RESIZE_H
bool resize_find_tiling_participants(Con **current, Con **other, direction_t direction); bool resize_find_tiling_participants(Con **current, Con **other, direction_t direction);
int resize_graphical_handler(Con *first, Con *second, orientation_t orientation, const xcb_button_press_event_t *event); int resize_graphical_handler(Con *first, Con *second, orientation_t orientation, const xcb_button_press_event_t *event);
#endif

View File

@ -8,8 +8,7 @@
* parsing (which can be found in load_layout.c). * parsing (which can be found in load_layout.c).
* *
*/ */
#ifndef I3_RESTORE_LAYOUT_H #pragma once
#define I3_RESTORE_LAYOUT_H
/** /**
* Opens a separate connection to X11 for placeholder windows when restoring * Opens a separate connection to X11 for placeholder windows when restoring
@ -37,5 +36,3 @@ void restore_open_placeholder_windows(Con *con);
* *
*/ */
bool restore_kill_placeholder(xcb_window_t placeholder); bool restore_kill_placeholder(xcb_window_t placeholder);
#endif

View File

@ -7,8 +7,7 @@
* scratchpad.c: Scratchpad functions (TODO: more description) * scratchpad.c: Scratchpad functions (TODO: more description)
* *
*/ */
#ifndef I3_SCRATCHPAD_H #pragma once
#define I3_SCRATCHPAD_H
/** /**
* Moves the specified window to the __i3_scratch workspace, making it floating * Moves the specified window to the __i3_scratch workspace, making it floating
@ -39,5 +38,3 @@ void scratchpad_show(Con *con);
* *
*/ */
void scratchpad_fix_resolution(void); void scratchpad_fix_resolution(void);
#endif

View File

@ -1,7 +1,6 @@
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/ /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
#ifndef foosddaemonhfoo #pragma once
#define foosddaemonhfoo
/*** /***
Copyright 2010 Lennart Poettering Copyright 2010 Lennart Poettering
@ -261,5 +260,3 @@ int sd_booted(void) _sd_hidden_;
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif
#endif

View File

@ -8,8 +8,7 @@
* default (ringbuffer for storing the debug log). * default (ringbuffer for storing the debug log).
* *
*/ */
#ifndef I3_I3_SHMLOG_H #pragma once
#define I3_I3_SHMLOG_H
#include <stdint.h> #include <stdint.h>
#include <pthread.h> #include <pthread.h>
@ -43,5 +42,3 @@ typedef struct i3_shmlog_header {
* tail -f) in an efficient way. */ * tail -f) in an efficient way. */
pthread_cond_t condvar; pthread_cond_t condvar;
} i3_shmlog_header; } i3_shmlog_header;
#endif

View File

@ -9,13 +9,10 @@
* to restart inplace). * to restart inplace).
* *
*/ */
#ifndef I3_SIGHANDLER_H #pragma once
#define I3_SIGHANDLER_H
/** /**
* Setup signal handlers to safely handle SIGSEGV and SIGFPE * Setup signal handlers to safely handle SIGSEGV and SIGFPE
* *
*/ */
void setup_signal_handler(void); void setup_signal_handler(void);
#endif

View File

@ -10,8 +10,7 @@
* the appropriate workspace. * the appropriate workspace.
* *
*/ */
#ifndef I3_STARTUP_H #pragma once
#define I3_STARTUP_H
#define SN_API_NOT_YET_FROZEN 1 #define SN_API_NOT_YET_FROZEN 1
#include <libsn/sn-monitor.h> #include <libsn/sn-monitor.h>
@ -62,5 +61,3 @@ struct Startup_Sequence *startup_sequence_get(i3Window *cwindow,
* *
*/ */
char *startup_workspace_for_window(i3Window *cwindow, xcb_get_property_reply_t *startup_id_reply); char *startup_workspace_for_window(i3Window *cwindow, xcb_get_property_reply_t *startup_id_reply);
#endif

View File

@ -7,8 +7,7 @@
* tree.c: Everything that primarily modifies the layout tree data structure. * tree.c: Everything that primarily modifies the layout tree data structure.
* *
*/ */
#ifndef I3_TREE_H #pragma once
#define I3_TREE_H
extern Con *croot; extern Con *croot;
/* TODO: i am not sure yet how much access to the focused container should /* TODO: i am not sure yet how much access to the focused container should
@ -105,5 +104,3 @@ bool tree_restore(const char *path, xcb_get_geometry_reply_t *geometry);
* *
*/ */
void tree_flatten(Con *child); void tree_flatten(Con *child);
#endif

View File

@ -8,8 +8,7 @@
* also libi3). * also libi3).
* *
*/ */
#ifndef I3_UTIL_H #pragma once
#define I3_UTIL_H
#include <err.h> #include <err.h>
@ -141,5 +140,3 @@ void start_nagbar(pid_t *nagbar_pid, char *argv[]);
* *
*/ */
void kill_nagbar(pid_t *nagbar_pid, bool wait_for_it); void kill_nagbar(pid_t *nagbar_pid, bool wait_for_it);
#endif

View File

@ -7,8 +7,7 @@
* window.c: Updates window attributes (X11 hints/properties). * window.c: Updates window attributes (X11 hints/properties).
* *
*/ */
#ifndef I3_WINDOW_H #pragma once
#define I3_WINDOW_H
/** /**
* Updates the WM_CLASS (consisting of the class and instance) for the * Updates the WM_CLASS (consisting of the class and instance) for the
@ -62,5 +61,3 @@ void window_update_role(i3Window *win, xcb_get_property_reply_t *prop, bool befo
* *
*/ */
void window_update_hints(i3Window *win, xcb_get_property_reply_t *prop, bool *urgency_hint); void window_update_hints(i3Window *win, xcb_get_property_reply_t *prop, bool *urgency_hint);
#endif

View File

@ -8,8 +8,7 @@
* workspaces. * workspaces.
* *
*/ */
#ifndef I3_WORKSPACE_H #pragma once
#define I3_WORKSPACE_H
#include "data.h" #include "data.h"
#include "tree.h" #include "tree.h"
@ -181,4 +180,3 @@ Con *workspace_attach_to(Con *ws);
* The container inherits the layout from the workspace. * The container inherits the layout from the workspace.
*/ */
Con *workspace_encapsulate(Con *ws); Con *workspace_encapsulate(Con *ws);
#endif

View File

@ -8,8 +8,7 @@
* render.c). Basically a big state machine. * render.c). Basically a big state machine.
* *
*/ */
#ifndef I3_X_H #pragma once
#define I3_X_H
/** Stores the X11 window ID of the currently focused window */ /** Stores the X11 window ID of the currently focused window */
extern xcb_window_t focused_id; extern xcb_window_t focused_id;
@ -130,5 +129,3 @@ void x_set_warp_to(Rect *rect);
* *
*/ */
void x_mask_event_mask(uint32_t mask); void x_mask_event_mask(uint32_t mask);
#endif

View File

@ -7,8 +7,7 @@
* xcb.c: Helper functions for easier usage of XCB * xcb.c: Helper functions for easier usage of XCB
* *
*/ */
#ifndef I3_XCB_H #pragma once
#define I3_XCB_H
#include "data.h" #include "data.h"
#include "xcursor.h" #include "xcursor.h"
@ -137,5 +136,3 @@ uint16_t get_visual_depth(xcb_visualid_t visual_id);
* *
*/ */
xcb_visualid_t get_visualid_by_depth(uint16_t depth); xcb_visualid_t get_visualid_by_depth(uint16_t depth);
#endif

View File

@ -9,8 +9,7 @@
* older versions. * older versions.
* *
*/ */
#ifndef I3_XCB_COMPAT_H #pragma once
#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_reply_t xcb_get_wm_protocols_reply_t
#define xcb_icccm_get_wm_protocols xcb_get_wm_protocols #define xcb_icccm_get_wm_protocols xcb_get_wm_protocols
@ -43,5 +42,3 @@
#define XCB_ATOM_ATOM ATOM #define XCB_ATOM_ATOM ATOM
#define XCB_ATOM_WM_NORMAL_HINTS WM_NORMAL_HINTS #define XCB_ATOM_WM_NORMAL_HINTS WM_NORMAL_HINTS
#define XCB_ATOM_STRING STRING #define XCB_ATOM_STRING STRING
#endif

View File

@ -7,8 +7,7 @@
* xcursor.c: libXcursor support for themed cursors. * xcursor.c: libXcursor support for themed cursors.
* *
*/ */
#ifndef I3_XCURSOR_CURSOR_H #pragma once
#define I3_XCURSOR_CURSOR_H
#include <xcb/xcb_cursor.h> #include <xcb/xcb_cursor.h>
@ -41,5 +40,3 @@ int xcursor_get_xcb_cursor(enum xcursor_cursor_t c);
* *
*/ */
void xcursor_set_root_cursor(int cursor_id); void xcursor_set_root_cursor(int cursor_id);
#endif

View File

@ -9,8 +9,7 @@
* driver which does not support RandR in 2011 *sigh*. * driver which does not support RandR in 2011 *sigh*.
* *
*/ */
#ifndef I3_XINERAMA_H #pragma once
#define I3_XINERAMA_H
#include "data.h" #include "data.h"
@ -20,5 +19,3 @@
* *
*/ */
void xinerama_init(void); void xinerama_init(void);
#endif

View File

@ -7,8 +7,7 @@
* yajl_utils.h * yajl_utils.h
* *
*/ */
#ifndef I3_YAJL_UTILS_H #pragma once
#define I3_YAJL_UTILS_H
#include <yajl/yajl_gen.h> #include <yajl/yajl_gen.h>
#include <yajl/yajl_parse.h> #include <yajl/yajl_parse.h>
@ -27,5 +26,3 @@ typedef size_t ylength;
#define yalloc(callbacks, client) yajl_alloc(callbacks, NULL, NULL, client) #define yalloc(callbacks, client) yajl_alloc(callbacks, NULL, NULL, client)
typedef unsigned int ylength; typedef unsigned int ylength;
#endif #endif
#endif

View File

@ -32,8 +32,7 @@
* @(#)queue.h 8.5 (Berkeley) 8/20/94 * @(#)queue.h 8.5 (Berkeley) 8/20/94
*/ */
#ifndef _SYS_QUEUE_H_ #pragma once
#define _SYS_QUEUE_H_
/* /*
* This file defines five types of data structures: singly-linked lists, * This file defines five types of data structures: singly-linked lists,
@ -523,5 +522,3 @@ struct { \
_Q_INVALIDATE((elm)->field.cqe_prev); \ _Q_INVALIDATE((elm)->field.cqe_prev); \
_Q_INVALIDATE((elm)->field.cqe_next); \ _Q_INVALIDATE((elm)->field.cqe_next); \
} while (0) } while (0)
#endif /* !_SYS_QUEUE_H_ */