refactor vermicelliDoubleMaskedExec()

This commit is contained in:
Konstantinos Margaritis
2021-11-02 22:30:21 +02:00
committed by Konstantinos Margaritis
parent 144f68ae03
commit 80286f38cb
2 changed files with 106 additions and 4 deletions

View File

@@ -35,6 +35,12 @@
#ifndef VERMICELLI_HPP
#define VERMICELLI_HPP
#include "util/bitutils.h"
#ifdef HAVE_SVE2
#include "vermicelli_sve.h"
#endif
#ifdef __cplusplus
extern "C" {
#endif
@@ -83,4 +89,12 @@ const u8 *rvermicelliDoubleExec(char c1, char c2, char nocase, const u8 *buf, co
}
#endif
#ifdef __cplusplus
extern "C" {
#endif
const u8 *vermicelliDoubleMaskedExec(char c1, char c2, char m1, char m2, const u8 *buf, const u8 *buf_end);
#ifdef __cplusplus
}
#endif
#endif /* VERMICELLI_HPP */