normalize file headers across **/*.{h,c}

This commit is contained in:
Michael Stapelberg
2011-10-25 21:19:38 +01:00
parent 8660ae4e12
commit 726f2a1e5a
70 changed files with 392 additions and 327 deletions

View File

@ -1 +1,15 @@
/*
* vim:ts=4:sw=4:expandtab
*
* i3 - an improved dynamic tiling window manager
* © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
*
* ucs2_to_utf8.c: Converts between UCS-2 and UTF-8, both of which are used in
* different contexts in X11.
*/
#ifndef _UCS2_TO_UTF8
#define _UCS2_TO_UTF8
char *convert_utf8_to_ucs2(char *input, int *real_strlen);
#endif