examples

Toy examples in single C files.
git clone git://henryandlizzy.uk/examples
Log | Files | Refs

commit e40ef4b5852d4a92d198f57dd42f15693ee1190b
parent 070aed7ca1012bdc50a705005a19c01f842f72d9
Author: Henry Wilson <henry@henryandlizzy.uk>
Date:   Tue, 16 Aug 2022 23:08:24 +0100

glob: remove unneccesary echoing of args

Diffstat:
Msrc/glob.c | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/src/glob.c b/src/glob.c @@ -15,7 +15,6 @@ int main(int argc, char* argv[]) for (int i = 1; i < argc; ++i) { - puts(argv[i]); glob(argv[i], flags, NULL, &results); flags |= GLOB_APPEND; }