clean some stuff
This commit is contained in:
parent
c5f57d24d3
commit
780a9d087a
|
@ -1,4 +1,5 @@
|
||||||
/* awesome-version.c - version message utility functions
|
/*
|
||||||
|
* awesome-version.c - version message utility functions
|
||||||
*
|
*
|
||||||
* Copyright © 2008 Julien Danjou <julien@danjou.info>
|
* Copyright © 2008 Julien Danjou <julien@danjou.info>
|
||||||
* Copyright © 2008 Hans Ulrich Niedermann <hun@n-dimensional.de>
|
* Copyright © 2008 Hans Ulrich Niedermann <hun@n-dimensional.de>
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
/* awesome-version.c - version message utility functions
|
/*
|
||||||
|
* awesome-version.h - version message utility functions header
|
||||||
*
|
*
|
||||||
|
* Copyright © 2008 Julien Danjou <julien@danjou.info>
|
||||||
* Copyright © 2008 Hans Ulrich Niedermann <hun@n-dimensional.de>
|
* Copyright © 2008 Hans Ulrich Niedermann <hun@n-dimensional.de>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -17,8 +19,8 @@
|
||||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef AWESOME_VERSION_H
|
#ifndef AWESOME_COMMON_VERSION_H
|
||||||
#define AWESOME_VERSION_H
|
#define AWESOME_COMMON_VERSION_H
|
||||||
|
|
||||||
void
|
void
|
||||||
eprint_version(const char *const executable)
|
eprint_version(const char *const executable)
|
||||||
|
|
|
@ -19,8 +19,8 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef AWESOME_DRAW_H
|
#ifndef AWESOME_COMMON_DRAW_H
|
||||||
#define AWESOME_DRAW_H
|
#define AWESOME_COMMON_DRAW_H
|
||||||
|
|
||||||
#include <cairo.h>
|
#include <cairo.h>
|
||||||
#include <X11/Xlib.h>
|
#include <X11/Xlib.h>
|
||||||
|
|
|
@ -20,8 +20,8 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef AWESOME_LIST_H
|
#ifndef AWESOME_COMMON_LIST_H
|
||||||
#define AWESOME_LIST_H
|
#define AWESOME_COMMON_LIST_H
|
||||||
|
|
||||||
#define DO_SLIST(type, prefix, dtor) \
|
#define DO_SLIST(type, prefix, dtor) \
|
||||||
static inline type *prefix##_list_pop(type **list) \
|
static inline type *prefix##_list_pop(type **list) \
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* swindow.h - simple window handling functions header
|
* swindow.h - simple window handling functions header
|
||||||
*
|
*
|
||||||
* Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
|
* Copyright © 2008 Julien Danjou <julien@danjou.info>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* util.c - useful functions
|
* util.c - useful functions
|
||||||
*
|
*
|
||||||
* Copyright © 2007 Julien Danjou <julien@danjou.info>
|
* Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
|
||||||
* Copyright © 2006 Pierre Habouzit <madcoder@debian.org>
|
* Copyright © 2006 Pierre Habouzit <madcoder@debian.org>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
|
|
@ -20,8 +20,8 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef AWESOME_UTIL_H
|
#ifndef AWESOME_COMMON_UTIL_H
|
||||||
#define AWESOME_UTIL_H
|
#define AWESOME_COMMON_UTIL_H
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
Loading…
Reference in New Issue