xsnip

X11 screenshotter
git clone https://git.sinitax.com/sinitax/xsnip
Log | Files | Refs | LICENSE | sfeed.txt

commit 70e3b2bf83b2bda08aea0478d8b64bc1c0cddc95
parent 270e6de80751ae18fdde02c66d101e2bc253db2d
Author: Louis Burda <quent.burda@gmail.com>
Date:   Sun,  2 Jan 2022 17:26:01 +0100

Reordered includes

Diffstat:
Mmain.c | 13+++++--------
1 file changed, 5 insertions(+), 8 deletions(-)

diff --git a/main.c b/main.c @@ -1,16 +1,13 @@ -/* REF: https://github.com/rDr4g0n/gidoodle */ - -#include <stdio.h> -#include <stdlib.h> -#include <stdarg.h> -#include <string.h> - +#include <Imlib2.h> #include <X11/Xlib.h> #include <X11/XKBlib.h> #include <X11/keysym.h> #include <X11/cursorfont.h> -#include <Imlib2.h> +#include <stdio.h> +#include <stdlib.h> +#include <stdarg.h> +#include <string.h> #define MIN(a, b) ((a) < (b) ? (a) : (b)) #define MAX(a, b) ((a) >= (b) ? (a) : (b))