]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/regex.h
tableprinter: code cleanup
[libucw.git] / ucw / regex.h
index 885b6c40afca11ddeaa0493ab2f4094ed5156a70..992988974b89bc52b08dc90674e962d8b85db5b1 100644 (file)
@@ -23,6 +23,6 @@ typedef struct regex regex;
 regex *rx_compile(const char *r, int icase);
 void rx_free(regex *r);
 int rx_match(regex *r, const char *s);
-int rx_subst(regex *r, const char *by, const char *src, char *dest, uns destlen);
+int rx_subst(regex *r, const char *by, const char *src, char *dest, uint destlen);
 
 #endif