Browse Source

Use new class interface and update copyright information

1.0.0
Georg Hopp 12 years ago
parent
commit
52ce40ac39
  1. 2
      include/tr/hexencode.h
  2. 2
      include/tr/sdbm.h
  3. 2
      include/tr/sha1.h
  4. 3
      include/tr/uuid.h
  5. 2
      src/hexdecode.c
  6. 2
      src/hexencode.c
  7. 2
      src/sdbm.c
  8. 2
      src/sha1.c
  9. 23
      src/sha1speed.c
  10. 2
      src/urldecode.c
  11. 2
      src/uuid/uuid.c

2
include/tr/hexencode.h

@ -5,7 +5,7 @@
* \author Georg Hopp * \author Georg Hopp
* *
* \copyright * \copyright
* Copyright © 2012 Georg Hopp
* Copyright © 2014 Georg Hopp
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
include/tr/sdbm.h

@ -5,7 +5,7 @@
* \author Georg Hopp * \author Georg Hopp
* *
* \copyright * \copyright
* Copyright © 2012 Georg Hopp
* Copyright © 2014 Georg Hopp
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
include/tr/sha1.h

@ -8,7 +8,7 @@
* \author Georg Hopp * \author Georg Hopp
* *
* \copyright * \copyright
* Copyright © 2013 Georg Hopp
* Copyright © 2014 Georg Hopp
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

3
include/tr/uuid.h

@ -10,7 +10,7 @@
* \author Georg Hopp * \author Georg Hopp
* *
* \copyright * \copyright
* Copyright © 2012 Georg Hopp
* Copyright © 2014 Georg Hopp
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -52,6 +52,7 @@ TR_CLASS(TR_Uuid) {
} uuid; } uuid;
}; };
TR_INSTANCE_INIT(TR_Uuid); TR_INSTANCE_INIT(TR_Uuid);
TR_CLASSVARS_DECL(TR_Uuid) {};
extern TR_Uuid TR_uuidZero; extern TR_Uuid TR_uuidZero;

2
src/hexdecode.c

@ -4,7 +4,7 @@
* \author Georg Hopp * \author Georg Hopp
* *
* \copyright * \copyright
* Copyright © 2012 Georg Hopp
* Copyright © 2014 Georg Hopp
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
src/hexencode.c

@ -4,7 +4,7 @@
* \author Georg Hopp * \author Georg Hopp
* *
* \copyright * \copyright
* Copyright © 2012 Georg Hopp
* Copyright © 2014 Georg Hopp
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
src/sdbm.c

@ -5,7 +5,7 @@
* \author Unknown (find out) * \author Unknown (find out)
* *
* \copyright * \copyright
* Copyright © 2012-2013 Georg Hopp
* Copyright © 2014 Georg Hopp
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
src/sha1.c

@ -8,7 +8,7 @@
* \author Georg Hopp * \author Georg Hopp
* *
* \copyright * \copyright
* Copyright © 2013 Georg Hopp
* Copyright © 2014 Georg Hopp
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

23
src/sha1speed.c

@ -2,19 +2,20 @@
* \file * \file
* Small test for out sha1 implementation * Small test for out sha1 implementation
* *
* Copyright © 2013, Copperfasten Technologies, Teoranta. All rights
* reserved. Unpublished rights reserved under the copyright laws of
* the United States and/or the Republic of Ireland.
* Copyright © 2014 Georg Hopp
* *
* The software contained herein is proprietary to and embodies the
* confidential technology of Copperfasten Technologies, Teoranta.
* Possession, use, duplication or dissemination of the software and
* media is authorized only pursuant to a valid written license from
* Copperfasten Technologies, Teoranta.
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* *
* \author Georg Hopp <ghopp@spamtitan.com>
* \version SVN: $id: $
* \copyright Copyright © 2013, Copperfasten Technologies
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <stdio.h> #include <stdio.h>
#include <sys/types.h> #include <sys/types.h>

2
src/urldecode.c

@ -4,7 +4,7 @@
* \author Georg Hopp * \author Georg Hopp
* *
* \copyright * \copyright
* Copyright © 2013 Georg Hopp
* Copyright © 2014 Georg Hopp
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
src/uuid/uuid.c

@ -51,7 +51,7 @@ uuidClone(void * _this, void * _base)
} }
TR_INIT_IFACE(TR_Class, uuidCtor, uuidDtor, uuidClone); TR_INIT_IFACE(TR_Class, uuidCtor, uuidDtor, uuidClone);
TR_CREATE_CLASS(TR_Uuid, NULL, TR_IF(TR_Class));
TR_CREATE_CLASS(TR_Uuid, NULL, NULL, TR_IF(TR_Class));
TR_INSTANCE( TR_INSTANCE(
TR_Uuid, TR_Uuid,

Loading…
Cancel
Save