mirror of
https://github.com/0intro/wmii
synced 2024-11-22 22:02:30 +03:00
14 lines
218 B
C
14 lines
218 B
C
|
/* Copyright ©2008-2010 Kris Maglione <maglione.k at Gmail>
|
||
|
* See LICENSE file for license details.
|
||
|
*/
|
||
|
#include "util.h"
|
||
|
|
||
|
void
|
||
|
refree(Regex *r) {
|
||
|
|
||
|
free(r->regex);
|
||
|
free(r->regc);
|
||
|
r->regex = nil;
|
||
|
r->regc = nil;
|
||
|
}
|