diff options
Diffstat (limited to 'src/data')
| -rw-r--r-- | src/data/array.c | 6 | ||||
| -rw-r--r-- | src/data/array.h | 6 | ||||
| -rw-r--r-- | src/data/dat.c | 6 | ||||
| -rw-r--r-- | src/data/dat.h | 6 | ||||
| -rw-r--r-- | src/data/hash.c | 6 | ||||
| -rw-r--r-- | src/data/hash.h | 6 | ||||
| -rw-r--r-- | src/data/list.c | 6 | ||||
| -rw-r--r-- | src/data/list.h | 6 | ||||
| -rw-r--r-- | src/data/map.c | 6 | ||||
| -rw-r--r-- | src/data/map.h | 6 | ||||
| -rw-r--r-- | src/data/queue.c | 6 | ||||
| -rw-r--r-- | src/data/queue.h | 6 | ||||
| -rw-r--r-- | src/data/stack.c | 6 | ||||
| -rw-r--r-- | src/data/stack.h | 6 | ||||
| -rw-r--r-- | src/data/tree.c | 6 | ||||
| -rw-r--r-- | src/data/tree.h | 6 | ||||
| -rw-r--r-- | src/data/tupel.c | 6 | ||||
| -rw-r--r-- | src/data/tupel.h | 6 | ||||
| -rw-r--r-- | src/data/types.h | 6 |
19 files changed, 57 insertions, 57 deletions
diff --git a/src/data/array.c b/src/data/array.c index 5543d41..fbb4590 100644 --- a/src/data/array.c +++ b/src/data/array.c @@ -2,11 +2,11 @@ *: 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 *: - *: Copyright (c) 2005 - 2008, Paul 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- @@ -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 0568098..21c23d3 100644 --- a/src/data/array.h +++ b/src/data/array.h @@ -2,11 +2,11 @@ *: 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 *: - *: Copyright (c) 2005 - 2008, Paul 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- @@ -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 ec690ce..edd861f 100644 --- a/src/data/dat.c +++ b/src/data/dat.c @@ -2,11 +2,11 @@ *: 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 *: - *: Copyright (c) 2005 - 2008, Paul 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- @@ -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 5b90d12..6e638cb 100644 --- a/src/data/dat.h +++ b/src/data/dat.h @@ -2,11 +2,11 @@ *: 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 *: - *: Copyright (c) 2005 - 2008, Paul 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- @@ -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 3e1ca77..c892f2c 100644 --- a/src/data/hash.c +++ b/src/data/hash.c @@ -2,11 +2,11 @@ *: 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 *: - *: Copyright (c) 2005 - 2008, Paul 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- @@ -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 215b7be..13dd742 100644 --- a/src/data/hash.h +++ b/src/data/hash.h @@ -2,11 +2,11 @@ *: 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 *: - *: Copyright (c) 2005 - 2008, Paul 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- @@ -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 7c2b118..f751fa0 100644 --- a/src/data/list.c +++ b/src/data/list.c @@ -2,11 +2,11 @@ *: 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 *: - *: Copyright (c) 2005 - 2008, Paul 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- @@ -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 e5e7e3b..1295485 100644 --- a/src/data/list.h +++ b/src/data/list.h @@ -2,11 +2,11 @@ *: 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 *: - *: Copyright (c) 2005 - 2008, Paul 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- @@ -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 938d100..2437385 100644 --- a/src/data/map.c +++ b/src/data/map.c @@ -2,11 +2,11 @@ *: 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 *: - *: Copyright (c) 2005 - 2008, Paul 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- @@ -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 898eaaf..c457529 100644 --- a/src/data/map.h +++ b/src/data/map.h @@ -2,11 +2,11 @@ *: 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 *: - *: Copyright (c) 2005 - 2008, Paul 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- @@ -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 4d2884a..e6e6d7b 100644 --- a/src/data/queue.c +++ b/src/data/queue.c @@ -2,11 +2,11 @@ *: 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 *: - *: Copyright (c) 2005 - 2008, Paul 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- @@ -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 71c8b29..5e24fce 100644 --- a/src/data/queue.h +++ b/src/data/queue.h @@ -2,11 +2,11 @@ *: 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 *: - *: Copyright (c) 2005 - 2008, Paul 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- @@ -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 b20354e..7e30f32 100644 --- a/src/data/stack.c +++ b/src/data/stack.c @@ -2,11 +2,11 @@ *: 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 *: - *: Copyright (c) 2005 - 2008, Paul 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- @@ -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 99db538..a54a894 100644 --- a/src/data/stack.h +++ b/src/data/stack.h @@ -2,11 +2,11 @@ *: 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 *: - *: Copyright (c) 2005 - 2008, Paul 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- @@ -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 59c44db..67f0b15 100644 --- a/src/data/tree.c +++ b/src/data/tree.c @@ -2,11 +2,11 @@ *: 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 *: - *: Copyright (c) 2005 - 2008, Paul 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- @@ -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 7251b73..6dc7d4b 100644 --- a/src/data/tree.h +++ b/src/data/tree.h @@ -2,11 +2,11 @@ *: 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 *: - *: Copyright (c) 2005 - 2008, Paul 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- @@ -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 fe3b65c..1294fbf 100644 --- a/src/data/tupel.c +++ b/src/data/tupel.c @@ -2,11 +2,11 @@ *: 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 *: - *: Copyright (c) 2005 - 2008, Paul 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- @@ -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 03c366d..35ad6d0 100644 --- a/src/data/tupel.h +++ b/src/data/tupel.h @@ -2,11 +2,11 @@ *: 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 *: - *: Copyright (c) 2005 - 2008, Paul 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- @@ -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 0f3852d..3fbab40 100644 --- a/src/data/types.h +++ b/src/data/types.h @@ -2,11 +2,11 @@ *: 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 *: - *: Copyright (c) 2005 - 2008, Paul 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- @@ -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. *: |
