move match_* to match.c

This commit is contained in:
Michael Stapelberg
2010-04-16 22:51:25 +02:00
parent bb220b27d7
commit 8d05039b04
5 changed files with 54 additions and 25 deletions

7
include/match.h Normal file
View File

@ -0,0 +1,7 @@
#ifndef _MATCH_H
#define _MATCH_H
bool match_is_empty(Match *match);
bool match_matches_window(Match *match, i3Window *window);
#endif