- WIP (dynamic function structure implementation started; only function type at the moment; running)

This commit is contained in:
2017-03-01 08:02:44 +00:00
parent 53f530fb6f
commit da56a3b6cf
7 changed files with 208 additions and 56 deletions

21
src/ext/xregex.h Normal file
View File

@@ -0,0 +1,21 @@
/*!
* @file xregex.h
* @brief
* @details
* Project: \n
* Subsystem: \n
* Module: \n
* Code: GNU-C\n
*
* @date 01.03.2017
* @author SESA354004
*/
#ifndef EXT_XREGEX_H_
#define EXT_XREGEX_H_
#include <regex.h>
#define XREGEX_IS_MATCHGROUP(groupArray, groupIndex) (groupArray[groupIndex].rm_so < groupArray[groupIndex].rm_eo)
#endif /* EXT_XREGEX_H_ */