# HG changeset patch # User tuomov # Date 1011465064 -3600 # Node ID 63cd573ffbcf06db3a0717ab90d96def49c19b02 # Parent 5a71d53d0228fffcc97b2a2745b230addd45883d trunk: changeset 39 - The tokenizer also supports reading from a buffer now. - 2002 update diff -r 5a71d53d0228 -r 63cd573ffbcf README --- a/README Sat Jan 19 19:14:36 2002 +0100 +++ b/README Sat Jan 19 19:31:04 2002 +0100 @@ -2,7 +2,7 @@ libtu - Copyright (c) Tuomo Valkonen 1999-2000. + Copyright (c) Tuomo Valkonen 1999-2002. diff -r 5a71d53d0228 -r 63cd573ffbcf include/libtu/dlist.h --- a/include/libtu/dlist.h Sat Jan 19 19:14:36 2002 +0100 +++ b/include/libtu/dlist.h Sat Jan 19 19:31:04 2002 +0100 @@ -1,7 +1,7 @@ /* * libtu/common.h * - * Copyright (c) Tuomo Valkonen 1999-2000. + * Copyright (c) Tuomo Valkonen 1999-2002. * See the included file LICENSE for details. */ diff -r 5a71d53d0228 -r 63cd573ffbcf include/libtu/map.h --- a/include/libtu/map.h Sat Jan 19 19:14:36 2002 +0100 +++ b/include/libtu/map.h Sat Jan 19 19:31:04 2002 +0100 @@ -1,7 +1,7 @@ /* * libtu/map.h * - * Copyright (c) Tuomo Valkonen 1999-2000. + * Copyright (c) Tuomo Valkonen 1999-2002. * See the included file LICENSE for details. */ diff -r 5a71d53d0228 -r 63cd573ffbcf include/libtu/misc.h --- a/include/libtu/misc.h Sat Jan 19 19:14:36 2002 +0100 +++ b/include/libtu/misc.h Sat Jan 19 19:31:04 2002 +0100 @@ -1,7 +1,7 @@ /* * libtu/misc.h * - * Copyright (c) Tuomo Valkonen 1999-2000. + * Copyright (c) Tuomo Valkonen 1999-2002. * See the included file LICENSE for details. */ diff -r 5a71d53d0228 -r 63cd573ffbcf include/libtu/optparser.h --- a/include/libtu/optparser.h Sat Jan 19 19:14:36 2002 +0100 +++ b/include/libtu/optparser.h Sat Jan 19 19:31:04 2002 +0100 @@ -1,7 +1,7 @@ /* * libtu/optparser.h * - * Copyright (c) Tuomo Valkonen 1999-2000. + * Copyright (c) Tuomo Valkonen 1999-2002. * See the included file LICENSE for details. */ diff -r 5a71d53d0228 -r 63cd573ffbcf include/libtu/output.h --- a/include/libtu/output.h Sat Jan 19 19:14:36 2002 +0100 +++ b/include/libtu/output.h Sat Jan 19 19:31:04 2002 +0100 @@ -1,7 +1,7 @@ /* * libtu/output.h * - * Copyright (c) Tuomo Valkonen 1999-2000. + * Copyright (c) Tuomo Valkonen 1999-2002. * See the included file LICENSE for details. */ diff -r 5a71d53d0228 -r 63cd573ffbcf include/libtu/parser.h --- a/include/libtu/parser.h Sat Jan 19 19:14:36 2002 +0100 +++ b/include/libtu/parser.h Sat Jan 19 19:31:04 2002 +0100 @@ -1,7 +1,7 @@ /* * libtu/parser.h * - * Copyright (c) Tuomo Valkonen 1999-2000. + * Copyright (c) Tuomo Valkonen 1999-2002. * See the included file LICENSE for details. */ diff -r 5a71d53d0228 -r 63cd573ffbcf include/libtu/tokenizer.h --- a/include/libtu/tokenizer.h Sat Jan 19 19:14:36 2002 +0100 +++ b/include/libtu/tokenizer.h Sat Jan 19 19:31:04 2002 +0100 @@ -1,7 +1,7 @@ /* * libtu/tokenizer.h * - * Copyright (c) Tuomo Valkonen 1999-2000. + * Copyright (c) Tuomo Valkonen 1999-2002. * See the included file LICENSE for details. */ diff -r 5a71d53d0228 -r 63cd573ffbcf include/libtu/types.h --- a/include/libtu/types.h Sat Jan 19 19:14:36 2002 +0100 +++ b/include/libtu/types.h Sat Jan 19 19:31:04 2002 +0100 @@ -1,7 +1,7 @@ /* * libtu/types.h * - * Copyright (c) Tuomo Valkonen 1999-2000. + * Copyright (c) Tuomo Valkonen 1999-2002. * See the included file LICENSE for details. */ diff -r 5a71d53d0228 -r 63cd573ffbcf include/libtu/util.h --- a/include/libtu/util.h Sat Jan 19 19:14:36 2002 +0100 +++ b/include/libtu/util.h Sat Jan 19 19:31:04 2002 +0100 @@ -1,7 +1,7 @@ /* * libtu/util.h * - * Copyright (c) Tuomo Valkonen 1999-2000. + * Copyright (c) Tuomo Valkonen 1999-2002. * See the included file LICENSE for details. */ diff -r 5a71d53d0228 -r 63cd573ffbcf map.c --- a/map.c Sat Jan 19 19:14:36 2002 +0100 +++ b/map.c Sat Jan 19 19:31:04 2002 +0100 @@ -1,7 +1,7 @@ /* * libtu/map.c * - * Copyright (c) Tuomo Valkonen 1999-2000. + * Copyright (c) Tuomo Valkonen 1999-2002. * See the included file LICENSE for details. */ diff -r 5a71d53d0228 -r 63cd573ffbcf misc.c --- a/misc.c Sat Jan 19 19:14:36 2002 +0100 +++ b/misc.c Sat Jan 19 19:31:04 2002 +0100 @@ -1,7 +1,7 @@ /* * libtu/misc.c * - * Copyright (c) Tuomo Valkonen 1999-2000. + * Copyright (c) Tuomo Valkonen 1999-2002. * See the included file LICENSE for details. */ diff -r 5a71d53d0228 -r 63cd573ffbcf np-conv.h --- a/np-conv.h Sat Jan 19 19:14:36 2002 +0100 +++ b/np-conv.h Sat Jan 19 19:31:04 2002 +0100 @@ -1,7 +1,7 @@ /* * libtu/np-conv.h * - * Copyright (c) Tuomo Valkonen 1999-2000. + * Copyright (c) Tuomo Valkonen 1999-2002. * See the included file LICENSE for details. */ diff -r 5a71d53d0228 -r 63cd573ffbcf numparser2.h --- a/numparser2.h Sat Jan 19 19:14:36 2002 +0100 +++ b/numparser2.h Sat Jan 19 19:31:04 2002 +0100 @@ -1,7 +1,7 @@ /* * libtu/numparser2.h * - * Copyright (c) Tuomo Valkonen 1999-2000. + * Copyright (c) Tuomo Valkonen 1999-2002. * See the included file LICENSE for details. */ diff -r 5a71d53d0228 -r 63cd573ffbcf optparser.c --- a/optparser.c Sat Jan 19 19:14:36 2002 +0100 +++ b/optparser.c Sat Jan 19 19:31:04 2002 +0100 @@ -1,7 +1,7 @@ /* * libtu/optparser.c * - * Copyright (c) Tuomo Valkonen 1999-2000. + * Copyright (c) Tuomo Valkonen 1999-2002. * See the included file LICENSE for details. */ diff -r 5a71d53d0228 -r 63cd573ffbcf output.c --- a/output.c Sat Jan 19 19:14:36 2002 +0100 +++ b/output.c Sat Jan 19 19:31:04 2002 +0100 @@ -1,7 +1,7 @@ /* * libtu/output.c * - * Copyright (c) Tuomo Valkonen 1999-2000. + * Copyright (c) Tuomo Valkonen 1999-2002. * See the included file LICENSE for details. */ diff -r 5a71d53d0228 -r 63cd573ffbcf parser.c --- a/parser.c Sat Jan 19 19:14:36 2002 +0100 +++ b/parser.c Sat Jan 19 19:31:04 2002 +0100 @@ -1,7 +1,7 @@ /* * libtu/parser.c * - * Copyright (c) Tuomo Valkonen 1999-2000. + * Copyright (c) Tuomo Valkonen 1999-2002. * See the included file LICENSE for details. */ diff -r 5a71d53d0228 -r 63cd573ffbcf tester.c --- a/tester.c Sat Jan 19 19:14:36 2002 +0100 +++ b/tester.c Sat Jan 19 19:31:04 2002 +0100 @@ -1,7 +1,7 @@ /* * libtu/tester.c * - * Copyright (c) Tuomo Valkonen 1999-2000. + * Copyright (c) Tuomo Valkonen 1999-2002. * See the included file LICENSE for details. */ diff -r 5a71d53d0228 -r 63cd573ffbcf tester2.c --- a/tester2.c Sat Jan 19 19:14:36 2002 +0100 +++ b/tester2.c Sat Jan 19 19:31:04 2002 +0100 @@ -1,7 +1,7 @@ /* * libtu/tester2.c * - * Copyright (c) Tuomo Valkonen 1999-2000. + * Copyright (c) Tuomo Valkonen 1999-2002. * See the included file LICENSE for details. */ diff -r 5a71d53d0228 -r 63cd573ffbcf tester3.c --- a/tester3.c Sat Jan 19 19:14:36 2002 +0100 +++ b/tester3.c Sat Jan 19 19:31:04 2002 +0100 @@ -1,7 +1,7 @@ /* * libtu/tester3.c * - * Copyright (c) Tuomo Valkonen 1999-2000. + * Copyright (c) Tuomo Valkonen 1999-2002. * See the included file LICENSE for details. */ diff -r 5a71d53d0228 -r 63cd573ffbcf tokenizer.c --- a/tokenizer.c Sat Jan 19 19:14:36 2002 +0100 +++ b/tokenizer.c Sat Jan 19 19:31:04 2002 +0100 @@ -1,7 +1,7 @@ /* * libtu/tokenizer.c * - * Copyright (c) Tuomo Valkonen 1999-2000. + * Copyright (c) Tuomo Valkonen 1999-2002. * See the included file LICENSE for details. */ diff -r 5a71d53d0228 -r 63cd573ffbcf util.c --- a/util.c Sat Jan 19 19:14:36 2002 +0100 +++ b/util.c Sat Jan 19 19:31:04 2002 +0100 @@ -1,7 +1,7 @@ /* * libtu/util.c * - * Copyright (c) Tuomo Valkonen 1999-2000. + * Copyright (c) Tuomo Valkonen 1999-2002. * See the included file LICENSE for details. */