Skip to content

Commit

Permalink
rename each_match.c to callback_each_match.c
Browse files Browse the repository at this point in the history
  • Loading branch information
kkos committed Mar 3, 2021
1 parent bf15274 commit df46c0c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -69,7 +69,7 @@ m4/*.m4
/sample/bug_fix
/sample/regset
/sample/scan
/sample/each_match
/sample/callback_each_match
/sample/log*

/harnesses/utf16*.dict
Expand Down
8 changes: 4 additions & 4 deletions sample/Makefile.am
Expand Up @@ -8,9 +8,9 @@ AM_LDFLAGS = -L$(libdir)
AM_CPPFLAGS = -I$(top_srcdir)/src

if ENABLE_POSIX_API
TESTS = encode listcap names posix simple sql syntax user_property callout echo count bug_fix regset scan each_match
TESTS = encode listcap names posix simple sql syntax user_property callout echo count bug_fix regset scan callback_each_match
else
TESTS = encode listcap names simple sql syntax user_property callout echo count bug_fix regset scan each_match
TESTS = encode listcap names simple sql syntax user_property callout echo count bug_fix regset scan callback_each_match
endif

check_PROGRAMS = $(TESTS)
Expand All @@ -29,7 +29,7 @@ count_SOURCES = count.c
bug_fix = bug_fix.c
regset_SOURCES = regset.c
scan_SOURCES = scan.c
each_match_SOURCES = each_match.c
callback_each_match_SOURCES = callback_each_match.c

sampledir = .

Expand All @@ -50,4 +50,4 @@ endif
$(sampledir)/bug_fix
$(sampledir)/regset
$(sampledir)/scan
$(sampledir)/each_match
$(sampledir)/callback_each_match
2 changes: 1 addition & 1 deletion sample/each_match.c → sample/callback_each_match.c
@@ -1,5 +1,5 @@
/*
* each_match.c
* callback_each_match.c
*/
#include <stdio.h>
#include <string.h>
Expand Down

0 comments on commit df46c0c

Please sign in to comment.