From dc1cdfb8f8b3130aaff6e92eaf1042e52e8a1a3a Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Fri, 30 Oct 2009 15:09:39 +0000 Subject: --- src/build.h | 2 +- src/core/interpret.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/build.h b/src/build.h index 4e046ad..02651cd 100644 --- a/src/build.h +++ b/src/build.h @@ -36,7 +36,7 @@ #ifndef BUILD_H #define BUILD_H -#define BUILDNR 9666 +#define BUILDNR 9667 #define OS_FREEBSD #endif diff --git a/src/core/interpret.c b/src/core/interpret.c index e471e72..9a7eef4 100644 --- a/src/core/interpret.c +++ b/src/core/interpret.c @@ -83,10 +83,12 @@ Interpret* interpret_new(List *p_list_token, Hash *p_hash_syms) { Interpret *p_interpret = malloc(sizeof(Interpret)); + /* No subprocess */ if (p_hash_syms != NULL) { p_interpret->p_scope = scope_new(p_hash_syms); p_interpret->b_scope_delete = true; + /* Subprocess */ } else { p_interpret->p_scope = NULL; p_interpret->b_scope_delete = false; -- cgit v1.2.3 From 37d92f8d048366d94b159752b65b79c22fef94cf Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Fri, 30 Oct 2009 15:11:18 +0000 Subject: --- src/argv.c | 2 +- src/argv.h | 2 +- src/build.h | 2 +- src/core/convert.c | 2 +- src/core/convert.h | 2 +- src/core/function.c | 2 +- src/core/function.h | 2 +- src/core/functions.c | 2 +- src/core/functions.h | 2 +- src/core/garbage.c | 2 +- src/core/garbage.h | 2 +- src/core/interpret.c | 2 +- src/core/interpret.h | 2 +- src/core/reference.c | 2 +- src/core/reference.h | 2 +- src/core/scanner.c | 2 +- src/core/scanner.h | 2 +- src/core/scope.c | 2 +- src/core/scope.h | 2 +- src/core/symbol.c | 2 +- src/core/symbol.h | 2 +- src/core/token.c | 2 +- src/core/token.h | 2 +- src/data/array.c | 2 +- src/data/array.h | 2 +- src/data/dat.c | 2 +- src/data/dat.h | 2 +- src/data/hash.c | 2 +- src/data/hash.h | 2 +- src/data/list.c | 2 +- src/data/list.h | 2 +- src/data/map.c | 2 +- src/data/map.h | 2 +- src/data/queue.c | 2 +- src/data/queue.h | 2 +- src/data/stack.c | 2 +- src/data/stack.h | 2 +- src/data/tree.c | 2 +- src/data/tree.h | 2 +- src/data/tupel.c | 2 +- src/data/tupel.h | 2 +- src/data/types.h | 2 +- src/defines.h | 2 +- src/fype.c | 2 +- src/fype.h | 2 +- src/main.c | 2 +- 46 files changed, 46 insertions(+), 46 deletions(-) (limited to 'src') diff --git a/src/argv.c b/src/argv.c index 7e83b0d..e453007 100644 --- a/src/argv.c +++ b/src/argv.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/argv.h b/src/argv.h index 2f3d792..3c2c61b 100644 --- a/src/argv.h +++ b/src/argv.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/build.h b/src/build.h index 02651cd..44cab04 100644 --- a/src/build.h +++ b/src/build.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/convert.c b/src/core/convert.c index 6844047..c487b6f 100644 --- a/src/core/convert.c +++ b/src/core/convert.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/convert.h b/src/core/convert.h index ed153d5..ceedd24 100644 --- a/src/core/convert.h +++ b/src/core/convert.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/function.c b/src/core/function.c index f16e74a..59499bc 100644 --- a/src/core/function.c +++ b/src/core/function.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/function.h b/src/core/function.h index 6235d97..305158b 100644 --- a/src/core/function.h +++ b/src/core/function.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/functions.c b/src/core/functions.c index e534e9a..0ce26c2 100644 --- a/src/core/functions.c +++ b/src/core/functions.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/functions.h b/src/core/functions.h index fc7a138..57104f9 100644 --- a/src/core/functions.h +++ b/src/core/functions.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/garbage.c b/src/core/garbage.c index 544cbcb..0b0b9a4 100644 --- a/src/core/garbage.c +++ b/src/core/garbage.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/garbage.h b/src/core/garbage.h index 2f93982..5d9595b 100644 --- a/src/core/garbage.h +++ b/src/core/garbage.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/interpret.c b/src/core/interpret.c index 9a7eef4..d30d65e 100644 --- a/src/core/interpret.c +++ b/src/core/interpret.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/interpret.h b/src/core/interpret.h index 28c6f2b..078cf58 100644 --- a/src/core/interpret.h +++ b/src/core/interpret.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/reference.c b/src/core/reference.c index fdbbb86..c714fd5 100644 --- a/src/core/reference.c +++ b/src/core/reference.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/reference.h b/src/core/reference.h index 0d16a2a..a79f3db 100644 --- a/src/core/reference.h +++ b/src/core/reference.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/scanner.c b/src/core/scanner.c index 266650c..8cfea84 100644 --- a/src/core/scanner.c +++ b/src/core/scanner.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/scanner.h b/src/core/scanner.h index bf4825d..eceafbb 100644 --- a/src/core/scanner.h +++ b/src/core/scanner.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/scope.c b/src/core/scope.c index acbec1f..d576d27 100644 --- a/src/core/scope.c +++ b/src/core/scope.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/scope.h b/src/core/scope.h index 16ddbd8..3d148e2 100644 --- a/src/core/scope.h +++ b/src/core/scope.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/symbol.c b/src/core/symbol.c index 375ff84..556adea 100644 --- a/src/core/symbol.c +++ b/src/core/symbol.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/symbol.h b/src/core/symbol.h index 2f6cc10..f4e9ccf 100644 --- a/src/core/symbol.h +++ b/src/core/symbol.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/token.c b/src/core/token.c index 092836f..9f94814 100644 --- a/src/core/token.c +++ b/src/core/token.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/token.h b/src/core/token.h index fe4ff52..05c6c8e 100644 --- a/src/core/token.h +++ b/src/core/token.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/array.c b/src/data/array.c index 5543d41..4f99ad5 100644 --- a/src/data/array.c +++ b/src/data/array.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/array.h b/src/data/array.h index 0568098..66d3da0 100644 --- a/src/data/array.h +++ b/src/data/array.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/dat.c b/src/data/dat.c index ec690ce..6b5ec32 100644 --- a/src/data/dat.c +++ b/src/data/dat.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/dat.h b/src/data/dat.h index 5b90d12..f05e8c7 100644 --- a/src/data/dat.h +++ b/src/data/dat.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/hash.c b/src/data/hash.c index 3e1ca77..52f8a22 100644 --- a/src/data/hash.c +++ b/src/data/hash.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/hash.h b/src/data/hash.h index 215b7be..4edcbee 100644 --- a/src/data/hash.h +++ b/src/data/hash.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/list.c b/src/data/list.c index 7c2b118..08bb2b5 100644 --- a/src/data/list.c +++ b/src/data/list.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/list.h b/src/data/list.h index e5e7e3b..d2f335d 100644 --- a/src/data/list.h +++ b/src/data/list.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/map.c b/src/data/map.c index 938d100..7eef972 100644 --- a/src/data/map.c +++ b/src/data/map.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/map.h b/src/data/map.h index 898eaaf..e286b08 100644 --- a/src/data/map.h +++ b/src/data/map.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/queue.c b/src/data/queue.c index 4d2884a..384db86 100644 --- a/src/data/queue.c +++ b/src/data/queue.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/queue.h b/src/data/queue.h index 71c8b29..a821bb0 100644 --- a/src/data/queue.h +++ b/src/data/queue.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/stack.c b/src/data/stack.c index b20354e..69b90e1 100644 --- a/src/data/stack.c +++ b/src/data/stack.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/stack.h b/src/data/stack.h index 99db538..f3f373c 100644 --- a/src/data/stack.h +++ b/src/data/stack.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/tree.c b/src/data/tree.c index 59c44db..f29e0fe 100644 --- a/src/data/tree.c +++ b/src/data/tree.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/tree.h b/src/data/tree.h index 7251b73..6566468 100644 --- a/src/data/tree.h +++ b/src/data/tree.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/tupel.c b/src/data/tupel.c index fe3b65c..e4e4f45 100644 --- a/src/data/tupel.c +++ b/src/data/tupel.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/tupel.h b/src/data/tupel.h index 03c366d..ed8238a 100644 --- a/src/data/tupel.h +++ b/src/data/tupel.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/types.h b/src/data/types.h index 0f3852d..b6b5de0 100644 --- a/src/data/types.h +++ b/src/data/types.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/defines.h b/src/defines.h index c5f567e..fec4c8c 100644 --- a/src/defines.h +++ b/src/defines.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/fype.c b/src/fype.c index 5aca8c8..fd8ab0e 100644 --- a/src/fype.c +++ b/src/fype.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/fype.h b/src/fype.h index f871c8f..ad4e296 100644 --- a/src/fype.h +++ b/src/fype.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/main.c b/src/main.c index b5cb62e..f7b4397 100644 --- a/src/main.c +++ b/src/main.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2008, Paul Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- -- cgit v1.2.3 From a19e7caed9e54b3e601f32617c909f856dfec265 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Fri, 30 Oct 2009 15:11:44 +0000 Subject: --- src/argv.c | 2 +- src/argv.h | 2 +- src/build.h | 2 +- src/core/convert.c | 2 +- src/core/convert.h | 2 +- src/core/function.c | 2 +- src/core/function.h | 2 +- src/core/functions.c | 2 +- src/core/functions.h | 2 +- src/core/garbage.c | 2 +- src/core/garbage.h | 2 +- src/core/interpret.c | 2 +- src/core/interpret.h | 2 +- src/core/reference.c | 2 +- src/core/reference.h | 2 +- src/core/scanner.c | 2 +- src/core/scanner.h | 2 +- src/core/scope.c | 2 +- src/core/scope.h | 2 +- src/core/symbol.c | 2 +- src/core/symbol.h | 2 +- src/core/token.c | 2 +- src/core/token.h | 2 +- src/data/array.c | 2 +- src/data/array.h | 2 +- src/data/dat.c | 2 +- src/data/dat.h | 2 +- src/data/hash.c | 2 +- src/data/hash.h | 2 +- src/data/list.c | 2 +- src/data/list.h | 2 +- src/data/map.c | 2 +- src/data/map.h | 2 +- src/data/queue.c | 2 +- src/data/queue.h | 2 +- src/data/stack.c | 2 +- src/data/stack.h | 2 +- src/data/tree.c | 2 +- src/data/tree.h | 2 +- src/data/tupel.c | 2 +- src/data/tupel.h | 2 +- src/data/types.h | 2 +- src/defines.h | 2 +- src/fype.c | 2 +- src/fype.h | 2 +- src/main.c | 2 +- 46 files changed, 46 insertions(+), 46 deletions(-) (limited to 'src') diff --git a/src/argv.c b/src/argv.c index e453007..846de19 100644 --- a/src/argv.c +++ b/src/argv.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/argv.h b/src/argv.h index 3c2c61b..3e7a647 100644 --- a/src/argv.h +++ b/src/argv.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/build.h b/src/build.h index 44cab04..a076a40 100644 --- a/src/build.h +++ b/src/build.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/convert.c b/src/core/convert.c index c487b6f..e420d6f 100644 --- a/src/core/convert.c +++ b/src/core/convert.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/convert.h b/src/core/convert.h index ceedd24..186a198 100644 --- a/src/core/convert.h +++ b/src/core/convert.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/function.c b/src/core/function.c index 59499bc..6ae314b 100644 --- a/src/core/function.c +++ b/src/core/function.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/function.h b/src/core/function.h index 305158b..fa8a8dd 100644 --- a/src/core/function.h +++ b/src/core/function.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/functions.c b/src/core/functions.c index 0ce26c2..ea1b515 100644 --- a/src/core/functions.c +++ b/src/core/functions.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/functions.h b/src/core/functions.h index 57104f9..aee89fb 100644 --- a/src/core/functions.h +++ b/src/core/functions.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/garbage.c b/src/core/garbage.c index 0b0b9a4..ee27449 100644 --- a/src/core/garbage.c +++ b/src/core/garbage.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/garbage.h b/src/core/garbage.h index 5d9595b..1ba73ef 100644 --- a/src/core/garbage.h +++ b/src/core/garbage.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/interpret.c b/src/core/interpret.c index d30d65e..ddd4d09 100644 --- a/src/core/interpret.c +++ b/src/core/interpret.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/interpret.h b/src/core/interpret.h index 078cf58..8412f19 100644 --- a/src/core/interpret.h +++ b/src/core/interpret.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/reference.c b/src/core/reference.c index c714fd5..4dbed43 100644 --- a/src/core/reference.c +++ b/src/core/reference.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/reference.h b/src/core/reference.h index a79f3db..1eade79 100644 --- a/src/core/reference.h +++ b/src/core/reference.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/scanner.c b/src/core/scanner.c index 8cfea84..2966cf5 100644 --- a/src/core/scanner.c +++ b/src/core/scanner.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/scanner.h b/src/core/scanner.h index eceafbb..30c735c 100644 --- a/src/core/scanner.h +++ b/src/core/scanner.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/scope.c b/src/core/scope.c index d576d27..8482a9d 100644 --- a/src/core/scope.c +++ b/src/core/scope.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/scope.h b/src/core/scope.h index 3d148e2..9bfafde 100644 --- a/src/core/scope.h +++ b/src/core/scope.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/symbol.c b/src/core/symbol.c index 556adea..f207754 100644 --- a/src/core/symbol.c +++ b/src/core/symbol.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/symbol.h b/src/core/symbol.h index f4e9ccf..4312add 100644 --- a/src/core/symbol.h +++ b/src/core/symbol.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/token.c b/src/core/token.c index 9f94814..1a34fbc 100644 --- a/src/core/token.c +++ b/src/core/token.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/core/token.h b/src/core/token.h index 05c6c8e..c8eb3f2 100644 --- a/src/core/token.h +++ b/src/core/token.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/array.c b/src/data/array.c index 4f99ad5..6caf8fd 100644 --- a/src/data/array.c +++ b/src/data/array.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/array.h b/src/data/array.h index 66d3da0..53c9aaa 100644 --- a/src/data/array.h +++ b/src/data/array.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/dat.c b/src/data/dat.c index 6b5ec32..5ddf535 100644 --- a/src/data/dat.c +++ b/src/data/dat.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/dat.h b/src/data/dat.h index f05e8c7..ad2cfd5 100644 --- a/src/data/dat.h +++ b/src/data/dat.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/hash.c b/src/data/hash.c index 52f8a22..c5fd41f 100644 --- a/src/data/hash.c +++ b/src/data/hash.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/hash.h b/src/data/hash.h index 4edcbee..c1f2534 100644 --- a/src/data/hash.h +++ b/src/data/hash.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/list.c b/src/data/list.c index 08bb2b5..932b60f 100644 --- a/src/data/list.c +++ b/src/data/list.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/list.h b/src/data/list.h index d2f335d..8baa1fe 100644 --- a/src/data/list.h +++ b/src/data/list.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/map.c b/src/data/map.c index 7eef972..e078df4 100644 --- a/src/data/map.c +++ b/src/data/map.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/map.h b/src/data/map.h index e286b08..75dd0a3 100644 --- a/src/data/map.h +++ b/src/data/map.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/queue.c b/src/data/queue.c index 384db86..db16a39 100644 --- a/src/data/queue.c +++ b/src/data/queue.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/queue.h b/src/data/queue.h index a821bb0..a95f42b 100644 --- a/src/data/queue.h +++ b/src/data/queue.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/stack.c b/src/data/stack.c index 69b90e1..ca12704 100644 --- a/src/data/stack.c +++ b/src/data/stack.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/stack.h b/src/data/stack.h index f3f373c..21dcdcb 100644 --- a/src/data/stack.h +++ b/src/data/stack.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/tree.c b/src/data/tree.c index f29e0fe..81f7321 100644 --- a/src/data/tree.c +++ b/src/data/tree.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/tree.h b/src/data/tree.h index 6566468..0bcb8d6 100644 --- a/src/data/tree.h +++ b/src/data/tree.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/tupel.c b/src/data/tupel.c index e4e4f45..b9babe4 100644 --- a/src/data/tupel.c +++ b/src/data/tupel.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/tupel.h b/src/data/tupel.h index ed8238a..61dd3d2 100644 --- a/src/data/tupel.h +++ b/src/data/tupel.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/data/types.h b/src/data/types.h index b6b5de0..3619b7a 100644 --- a/src/data/types.h +++ b/src/data/types.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/defines.h b/src/defines.h index fec4c8c..8161266 100644 --- a/src/defines.h +++ b/src/defines.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/fype.c b/src/fype.c index fd8ab0e..46e1cee 100644 --- a/src/fype.c +++ b/src/fype.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/fype.h b/src/fype.h index ad4e296..c8af44c 100644 --- a/src/fype.h +++ b/src/fype.h @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- diff --git a/src/main.c b/src/main.c index f7b4397..a0bc43f 100644 --- a/src/main.c +++ b/src/main.c @@ -6,7 +6,7 @@ *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: - *: Copyright (c) 2005 - 2009, Dipl.-Inforn. (FH) Paul C. Buetow + *: Copyright (c) 2005 - 2009, Dipl.-Inform. (FH) Paul C. Buetow *: All rights reserved. *: *: Redistribution and use in source and binary forms, with or without modi- -- cgit v1.2.3 From d02a747ee8d7c1347a3bb2be2517ac280a55b97d Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Fri, 30 Oct 2009 15:21:41 +0000 Subject: --- src/build.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/build.h b/src/build.h index a076a40..30e43f1 100644 --- a/src/build.h +++ b/src/build.h @@ -36,7 +36,7 @@ #ifndef BUILD_H #define BUILD_H -#define BUILDNR 9667 +#define BUILDNR 9668 #define OS_FREEBSD #endif -- cgit v1.2.3 From edab52e9856f5af831a21ab14cc1452eda4399e9 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sat, 14 Nov 2009 08:58:02 +0000 Subject: --- src/argv.c | 4 ++-- src/argv.h | 4 ++-- src/build.h | 4 ++-- src/core/convert.c | 4 ++-- src/core/convert.h | 4 ++-- src/core/function.c | 4 ++-- src/core/function.h | 4 ++-- src/core/functions.c | 4 ++-- src/core/functions.h | 4 ++-- src/core/garbage.c | 4 ++-- src/core/garbage.h | 4 ++-- src/core/interpret.c | 4 ++-- src/core/interpret.h | 4 ++-- src/core/reference.c | 4 ++-- src/core/reference.h | 4 ++-- src/core/scanner.c | 4 ++-- src/core/scanner.h | 4 ++-- src/core/scope.c | 4 ++-- src/core/scope.h | 4 ++-- src/core/symbol.c | 4 ++-- src/core/symbol.h | 4 ++-- src/core/token.c | 4 ++-- src/core/token.h | 4 ++-- src/data/array.c | 4 ++-- src/data/array.h | 4 ++-- src/data/dat.c | 4 ++-- src/data/dat.h | 4 ++-- src/data/hash.c | 4 ++-- src/data/hash.h | 4 ++-- src/data/list.c | 4 ++-- src/data/list.h | 4 ++-- src/data/map.c | 4 ++-- src/data/map.h | 4 ++-- src/data/queue.c | 4 ++-- src/data/queue.h | 4 ++-- src/data/stack.c | 4 ++-- src/data/stack.h | 4 ++-- src/data/tree.c | 4 ++-- src/data/tree.h | 4 ++-- src/data/tupel.c | 4 ++-- src/data/tupel.h | 4 ++-- src/data/types.h | 4 ++-- src/defines.h | 4 ++-- src/fype.c | 4 ++-- src/fype.h | 4 ++-- src/main.c | 4 ++-- 46 files changed, 92 insertions(+), 92 deletions(-) (limited to 'src') diff --git a/src/argv.c b/src/argv.c index 846de19..926e854 100644 --- a/src/argv.c +++ b/src/argv.c @@ -2,7 +2,7 @@ *: File: ./src/argv.c *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/argv.h b/src/argv.h index 3e7a647..18baa8c 100644 --- a/src/argv.h +++ b/src/argv.h @@ -2,7 +2,7 @@ *: File: ./src/argv.h *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/build.h b/src/build.h index 30e43f1..eecab62 100644 --- a/src/build.h +++ b/src/build.h @@ -2,7 +2,7 @@ *: File: ./src/build.h *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/core/convert.c b/src/core/convert.c index e420d6f..cf8987e 100644 --- a/src/core/convert.c +++ b/src/core/convert.c @@ -2,7 +2,7 @@ *: File: ./src/core/convert.c *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/core/convert.h b/src/core/convert.h index 186a198..9dcf23e 100644 --- a/src/core/convert.h +++ b/src/core/convert.h @@ -2,7 +2,7 @@ *: File: ./src/core/convert.h *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/core/function.c b/src/core/function.c index 6ae314b..70166ed 100644 --- a/src/core/function.c +++ b/src/core/function.c @@ -2,7 +2,7 @@ *: File: ./src/core/function.c *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/core/function.h b/src/core/function.h index fa8a8dd..748ebce 100644 --- a/src/core/function.h +++ b/src/core/function.h @@ -2,7 +2,7 @@ *: File: ./src/core/function.h *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/core/functions.c b/src/core/functions.c index ea1b515..82efc4f 100644 --- a/src/core/functions.c +++ b/src/core/functions.c @@ -2,7 +2,7 @@ *: File: ./src/core/functions.c *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/core/functions.h b/src/core/functions.h index aee89fb..4e00dc2 100644 --- a/src/core/functions.h +++ b/src/core/functions.h @@ -2,7 +2,7 @@ *: File: ./src/core/functions.h *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/core/garbage.c b/src/core/garbage.c index ee27449..23c73b8 100644 --- a/src/core/garbage.c +++ b/src/core/garbage.c @@ -2,7 +2,7 @@ *: File: ./src/core/garbage.c *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/core/garbage.h b/src/core/garbage.h index 1ba73ef..f7533eb 100644 --- a/src/core/garbage.h +++ b/src/core/garbage.h @@ -2,7 +2,7 @@ *: File: ./src/core/garbage.h *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/core/interpret.c b/src/core/interpret.c index ddd4d09..49fab69 100644 --- a/src/core/interpret.c +++ b/src/core/interpret.c @@ -2,7 +2,7 @@ *: File: ./src/core/interpret.c *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/core/interpret.h b/src/core/interpret.h index 8412f19..6ac035a 100644 --- a/src/core/interpret.h +++ b/src/core/interpret.h @@ -2,7 +2,7 @@ *: File: ./src/core/interpret.h *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/core/reference.c b/src/core/reference.c index 4dbed43..3eccaaa 100644 --- a/src/core/reference.c +++ b/src/core/reference.c @@ -2,7 +2,7 @@ *: File: ./src/core/reference.c *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/core/reference.h b/src/core/reference.h index 1eade79..6cda63d 100644 --- a/src/core/reference.h +++ b/src/core/reference.h @@ -2,7 +2,7 @@ *: File: ./src/core/reference.h *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/core/scanner.c b/src/core/scanner.c index 2966cf5..96d3756 100644 --- a/src/core/scanner.c +++ b/src/core/scanner.c @@ -2,7 +2,7 @@ *: File: ./src/core/scanner.c *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/core/scanner.h b/src/core/scanner.h index 30c735c..7fb20d0 100644 --- a/src/core/scanner.h +++ b/src/core/scanner.h @@ -2,7 +2,7 @@ *: File: ./src/core/scanner.h *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/core/scope.c b/src/core/scope.c index 8482a9d..a9098a9 100644 --- a/src/core/scope.c +++ b/src/core/scope.c @@ -2,7 +2,7 @@ *: File: ./src/core/scope.c *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/core/scope.h b/src/core/scope.h index 9bfafde..c1193c9 100644 --- a/src/core/scope.h +++ b/src/core/scope.h @@ -2,7 +2,7 @@ *: File: ./src/core/scope.h *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/core/symbol.c b/src/core/symbol.c index f207754..f4ad990 100644 --- a/src/core/symbol.c +++ b/src/core/symbol.c @@ -2,7 +2,7 @@ *: File: ./src/core/symbol.c *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/core/symbol.h b/src/core/symbol.h index 4312add..56f0e44 100644 --- a/src/core/symbol.h +++ b/src/core/symbol.h @@ -2,7 +2,7 @@ *: File: ./src/core/symbol.h *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/core/token.c b/src/core/token.c index 1a34fbc..b019a83 100644 --- a/src/core/token.c +++ b/src/core/token.c @@ -2,7 +2,7 @@ *: File: ./src/core/token.c *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/core/token.h b/src/core/token.h index c8eb3f2..514a02d 100644 --- a/src/core/token.h +++ b/src/core/token.h @@ -2,7 +2,7 @@ *: File: ./src/core/token.h *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/data/array.c b/src/data/array.c index 6caf8fd..fbb4590 100644 --- a/src/data/array.c +++ b/src/data/array.c @@ -2,7 +2,7 @@ *: File: ./src/data/array.c *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/data/array.h b/src/data/array.h index 53c9aaa..21c23d3 100644 --- a/src/data/array.h +++ b/src/data/array.h @@ -2,7 +2,7 @@ *: File: ./src/data/array.h *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/data/dat.c b/src/data/dat.c index 5ddf535..edd861f 100644 --- a/src/data/dat.c +++ b/src/data/dat.c @@ -2,7 +2,7 @@ *: File: ./src/data/dat.c *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/data/dat.h b/src/data/dat.h index ad2cfd5..6e638cb 100644 --- a/src/data/dat.h +++ b/src/data/dat.h @@ -2,7 +2,7 @@ *: File: ./src/data/dat.h *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/data/hash.c b/src/data/hash.c index c5fd41f..c892f2c 100644 --- a/src/data/hash.c +++ b/src/data/hash.c @@ -2,7 +2,7 @@ *: File: ./src/data/hash.c *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/data/hash.h b/src/data/hash.h index c1f2534..13dd742 100644 --- a/src/data/hash.h +++ b/src/data/hash.h @@ -2,7 +2,7 @@ *: File: ./src/data/hash.h *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/data/list.c b/src/data/list.c index 932b60f..f751fa0 100644 --- a/src/data/list.c +++ b/src/data/list.c @@ -2,7 +2,7 @@ *: File: ./src/data/list.c *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/data/list.h b/src/data/list.h index 8baa1fe..1295485 100644 --- a/src/data/list.h +++ b/src/data/list.h @@ -2,7 +2,7 @@ *: File: ./src/data/list.h *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/data/map.c b/src/data/map.c index e078df4..2437385 100644 --- a/src/data/map.c +++ b/src/data/map.c @@ -2,7 +2,7 @@ *: File: ./src/data/map.c *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/data/map.h b/src/data/map.h index 75dd0a3..c457529 100644 --- a/src/data/map.h +++ b/src/data/map.h @@ -2,7 +2,7 @@ *: File: ./src/data/map.h *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/data/queue.c b/src/data/queue.c index db16a39..e6e6d7b 100644 --- a/src/data/queue.c +++ b/src/data/queue.c @@ -2,7 +2,7 @@ *: File: ./src/data/queue.c *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/data/queue.h b/src/data/queue.h index a95f42b..5e24fce 100644 --- a/src/data/queue.h +++ b/src/data/queue.h @@ -2,7 +2,7 @@ *: File: ./src/data/queue.h *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/data/stack.c b/src/data/stack.c index ca12704..7e30f32 100644 --- a/src/data/stack.c +++ b/src/data/stack.c @@ -2,7 +2,7 @@ *: File: ./src/data/stack.c *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/data/stack.h b/src/data/stack.h index 21dcdcb..a54a894 100644 --- a/src/data/stack.h +++ b/src/data/stack.h @@ -2,7 +2,7 @@ *: File: ./src/data/stack.h *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/data/tree.c b/src/data/tree.c index 81f7321..67f0b15 100644 --- a/src/data/tree.c +++ b/src/data/tree.c @@ -2,7 +2,7 @@ *: File: ./src/data/tree.c *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/data/tree.h b/src/data/tree.h index 0bcb8d6..6dc7d4b 100644 --- a/src/data/tree.h +++ b/src/data/tree.h @@ -2,7 +2,7 @@ *: File: ./src/data/tree.h *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/data/tupel.c b/src/data/tupel.c index b9babe4..1294fbf 100644 --- a/src/data/tupel.c +++ b/src/data/tupel.c @@ -2,7 +2,7 @@ *: File: ./src/data/tupel.c *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/data/tupel.h b/src/data/tupel.h index 61dd3d2..35ad6d0 100644 --- a/src/data/tupel.h +++ b/src/data/tupel.h @@ -2,7 +2,7 @@ *: File: ./src/data/tupel.h *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/data/types.h b/src/data/types.h index 3619b7a..3fbab40 100644 --- a/src/data/types.h +++ b/src/data/types.h @@ -2,7 +2,7 @@ *: File: ./src/data/types.h *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/defines.h b/src/defines.h index 8161266..815075f 100644 --- a/src/defines.h +++ b/src/defines.h @@ -2,7 +2,7 @@ *: File: ./src/defines.h *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/fype.c b/src/fype.c index 46e1cee..23f017f 100644 --- a/src/fype.c +++ b/src/fype.c @@ -2,7 +2,7 @@ *: File: ./src/fype.c *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/fype.h b/src/fype.h index c8af44c..a8bd2b2 100644 --- a/src/fype.h +++ b/src/fype.h @@ -2,7 +2,7 @@ *: File: ./src/fype.h *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: diff --git a/src/main.c b/src/main.c index a0bc43f..c01a9f3 100644 --- a/src/main.c +++ b/src/main.c @@ -2,7 +2,7 @@ *: File: ./src/main.c *: A simple interpreter *: - *: WWW : http://fype.buetow.org + *: WWW : http://fype.buetow.org *: AUTHOR : http://paul.buetow.org *: E-Mail : fype at dev.buetow.org *: @@ -16,7 +16,7 @@ *: * Redistributions in binary form must reproduce the above copyright *: notice, this list of conditions and the following disclaimer in the *: documentation and/or other materials provided with the distribution. - *: * Neither the name of P. B. Labs nor the names of its contributors may + *: * Neither the name of buetow.org nor the names of its contributors may *: be used to endorse or promote products derived from this software *: without specific prior written permission. *: -- cgit v1.2.3 From e3414345f18156200a2ac8ee055aacff7909e2ce Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Wed, 27 Jan 2010 07:52:33 +0000 Subject: --- src/build.h | 4 ++-- src/defines.h | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/build.h b/src/build.h index eecab62..27dbb5c 100644 --- a/src/build.h +++ b/src/build.h @@ -36,7 +36,7 @@ #ifndef BUILD_H #define BUILD_H -#define BUILDNR 9668 -#define OS_FREEBSD +#define BUILDNR 9669 +#define OS_LINUX #endif diff --git a/src/defines.h b/src/defines.h index 815075f..6721a47 100644 --- a/src/defines.h +++ b/src/defines.h @@ -50,12 +50,12 @@ #define HASH_MAXOCC 5 #define HASH_MKEYLEN 32 #define HASH_SCALE 10 -#define NAME "Fype" +#define NAME "Fype0" #define ASSEMBLER "yasm" #define LINKER "cc" #define SCANNER_BUFSIZE 512 -#define URL "" -#define VERSION "Superalpha Build" +#define URL "" +#define VERSION "Alpha Build" -- cgit v1.2.3