diff options
| author | Mattias Andrée <m@maandree.se> | 2026-02-22 14:17:32 +0100 |
|---|---|---|
| committer | Mattias Andrée <m@maandree.se> | 2026-02-22 14:17:32 +0100 |
| commit | 2e6ff7df917fc8f261268e752f84986ed3c683c5 (patch) | |
| tree | 903ea5d54d281cb88600f4ee46546a3672472b1e /src | |
| parent | Update e-mail (diff) | |
| download | argparser-2e6ff7df917fc8f261268e752f84986ed3c683c5.tar.gz argparser-2e6ff7df917fc8f261268e752f84986ed3c683c5.tar.bz2 argparser-2e6ff7df917fc8f261268e752f84986ed3c683c5.tar.xz | |
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to '')
| -rw-r--r-- | src/Test.java | 4 | ||||
| -rw-r--r-- | src/argparser.bash | 2 | ||||
| -rw-r--r-- | src/argparser.c | 2 | ||||
| -rw-r--r-- | src/argparser.h | 2 | ||||
| -rw-r--r-- | src/argparser.py | 4 | ||||
| -rw-r--r-- | src/argparser/ArgParser.java | 4 | ||||
| -rw-r--r-- | src/libargparser/argparser.c | 2 | ||||
| -rw-r--r-- | src/libargparser/argparser.h | 2 | ||||
| -rwxr-xr-x | src/test.bash | 4 | ||||
| -rw-r--r-- | src/test.c | 4 | ||||
| -rwxr-xr-x | src/test.py | 4 |
11 files changed, 17 insertions, 17 deletions
diff --git a/src/Test.java b/src/Test.java index c9c04a2..fe4da66 100644 --- a/src/Test.java +++ b/src/Test.java @@ -1,7 +1,7 @@ /** * argparser – command line argument parser library * - * Copyright © 2013 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2013 Mattias Andrée (m@maandree.se) * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by @@ -26,7 +26,7 @@ public class Test System.out.println("Parent: " + ArgParser.parentName()); ArgParser parser = new ArgParser.Abbreviations("A test for argparser", "test [options] [files]", - "Copyright © 2013 Mattias Andrée (maandree@member.fsf.org)\n" + + "Copyright © 2013 Mattias Andrée (m@maandree.se)\n" + "\n" + "This library is free software: you can redistribute it and/or modify\n" + "it under the terms of the GNU Affero General Public License as published by\n" + diff --git a/src/argparser.bash b/src/argparser.bash index 99711c3..5afa3b6 100644 --- a/src/argparser.bash +++ b/src/argparser.bash @@ -2,7 +2,7 @@ ## # argparser – command line argument parser library # -# Copyright © 2013 Mattias Andrée (maandree@member.fsf.org) +# Copyright © 2013 Mattias Andrée (m@maandree.se) # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/src/argparser.c b/src/argparser.c index ed1a64d..1d21fad 100644 --- a/src/argparser.c +++ b/src/argparser.c @@ -1,7 +1,7 @@ /** * argparser – command line argument parser library * - * Copyright © 2013 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2013 Mattias Andrée (m@maandree.se) * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by diff --git a/src/argparser.h b/src/argparser.h index 9503737..6c62a65 100644 --- a/src/argparser.h +++ b/src/argparser.h @@ -1,7 +1,7 @@ /** * argparser – command line argument parser library * - * Copyright © 2013 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2013 Mattias Andrée (m@maandree.se) * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by diff --git a/src/argparser.py b/src/argparser.py index f9160da..44a82bb 100644 --- a/src/argparser.py +++ b/src/argparser.py @@ -3,7 +3,7 @@ ''' argparser – command line argument parser library -Copyright © 2013 Mattias Andrée (maandree@member.fsf.org) +Copyright © 2013 Mattias Andrée (m@maandree.se) This library is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by @@ -26,7 +26,7 @@ class ArgParser(): ''' Simple argument parser - @author Mattias Andrée, maandree@member.fsf.org + @author Mattias Andrée, m@maandree.se ''' diff --git a/src/argparser/ArgParser.java b/src/argparser/ArgParser.java index b2b56a1..088c4cb 100644 --- a/src/argparser/ArgParser.java +++ b/src/argparser/ArgParser.java @@ -1,7 +1,7 @@ /** * argparser – command line argument parser library * - * Copyright © 2013 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2013 Mattias Andrée (m@maandree.se) * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by @@ -25,7 +25,7 @@ import java.io.*; /** * Simple argument parser * - * @author Mattias Andrée, <a href="mailto:maandree@member.fsf.org">maandree@member.fsf.org</a> + * @author Mattias Andrée, <a href="mailto:m@maandree.se">m@maandree.se</a> */ public class ArgParser { diff --git a/src/libargparser/argparser.c b/src/libargparser/argparser.c index ba3d606..2004420 100644 --- a/src/libargparser/argparser.c +++ b/src/libargparser/argparser.c @@ -1,7 +1,7 @@ /** * argparser – command line argument parser library * - * Copyright © 2013, 2014 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2013, 2014 Mattias Andrée (m@maandree.se) * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by diff --git a/src/libargparser/argparser.h b/src/libargparser/argparser.h index 51feace..0691ffe 100644 --- a/src/libargparser/argparser.h +++ b/src/libargparser/argparser.h @@ -1,7 +1,7 @@ /** * argparser – command line argument parser library * - * Copyright © 2013, 2014 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2013, 2014 Mattias Andrée (m@maandree.se) * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by diff --git a/src/test.bash b/src/test.bash index fc44eec..94c8eba 100755 --- a/src/test.bash +++ b/src/test.bash @@ -2,7 +2,7 @@ ## # argparser – command line argument parser library # -# Copyright © 2013 Mattias Andrée (maandree@member.fsf.org) +# Copyright © 2013 Mattias Andrée (m@maandree.se) # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by @@ -25,7 +25,7 @@ echo "Parent: $(args_parent_name)" long=$(cat <<. argparser – command line argument parser library -Copyright © 2013 Mattias Andrée (maandree@member.fsf.org) +Copyright © 2013 Mattias Andrée (m@maandree.se) This library is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by @@ -1,7 +1,7 @@ /** * argparser – command line argument parser library * - * Copyright © 2013 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2013 Mattias Andrée (m@maandree.se) * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by @@ -28,7 +28,7 @@ int main(int argc, char** argv) free(pname); args_init("A test for argparser", "test [options] [files]", - "Copyright © 2013 Mattias Andrée (maandree@member.fsf.org)\n" + "Copyright © 2013 Mattias Andrée (m@maandree.se)\n" "\n" "This library is free software: you can redistribute it and/or modify\n" "it under the terms of the GNU Affero General Public License as published by\n" diff --git a/src/test.py b/src/test.py index 0cfd242..998a10a 100755 --- a/src/test.py +++ b/src/test.py @@ -3,7 +3,7 @@ ''' argparser – command line argument parser library -Copyright © 2013 Mattias Andrée (maandree@member.fsf.org) +Copyright © 2013 Mattias Andrée (m@maandree.se) This library is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by @@ -24,7 +24,7 @@ from argparser import * print('Parent: ' + ArgParser.parent_name()) parser = ArgParser('A test for argparser', 'test [options] [files]', - 'Copyright © 2013 Mattias Andrée (maandree@member.fsf.org)\n' + 'Copyright © 2013 Mattias Andrée (m@maandree.se)\n' '\n' 'This library is free software: you can redistribute it and/or modify\n' 'it under the terms of the GNU Affero General Public License as published by\n' |
