mirror of
https://github.com/vbatts/bvi.git
synced 2025-08-02 23:50:28 +00:00
bvi-1.5.0.src.tar.gz
6540716a1a3b2b9711635108da14b26baea488881d4a682121c0bddbba6b74cb bvi-1.5.0.src.tar.gz Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
parent
75fc14b579
commit
50898d8d59
28 changed files with 1936 additions and 1473 deletions
13
recomp.c
13
recomp.c
|
@ -6,8 +6,9 @@
|
|||
* 2000-04-25 V 1.3.0 beta
|
||||
* 2000-07-12 V 1.3.0 final
|
||||
* 2019-01-28 V 1.4.1
|
||||
* 2025-07-19 V 1.5.0
|
||||
*
|
||||
* Copyright 1996-2019 by Gerhard Buergmann
|
||||
* Copyright 1996-2025 by Gerhard Buergmann
|
||||
* gerhard@puon.at
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
|
@ -26,7 +27,7 @@
|
|||
/* You cannot use a common regexp subroutine, because \0 is a regular
|
||||
* character in a binary string !
|
||||
*/
|
||||
|
||||
|
||||
|
||||
#include "bvi.h"
|
||||
#include "set.h"
|
||||
|
@ -46,9 +47,7 @@ extern char *emptyclass;
|
|||
* Compiling an ASCII sequence to a regex string
|
||||
*/
|
||||
int
|
||||
ascii_comp(smem, pattern)
|
||||
char *smem;
|
||||
char *pattern;
|
||||
ascii_comp(char *smem, char *pattern)
|
||||
{
|
||||
char *end;
|
||||
char *comp;
|
||||
|
@ -167,9 +166,7 @@ ascii_comp(smem, pattern)
|
|||
* Compiling a hex expression to a regex string
|
||||
*/
|
||||
int
|
||||
hex_comp(smem, pattern)
|
||||
char *smem;
|
||||
char *pattern;
|
||||
hex_comp(char *smem, char *pattern)
|
||||
{
|
||||
char *end;
|
||||
char *comp;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue