copyright statements
authorPierre Habouzit <madcoder@debian.org>
Mon, 13 Nov 2006 01:14:48 +0000 (02:14 +0100)
committerPierre Habouzit <madcoder@debian.org>
Mon, 13 Nov 2006 01:14:48 +0000 (02:14 +0100)
Signed-off-by: Pierre Habouzit <madcoder@debian.org>
alias.c
alias.h

diff --git a/alias.c b/alias.c
index e0711c3..e03536b 100644 (file)
--- a/alias.c
+++ b/alias.c
@@ -1,3 +1,21 @@
+/*
+ *  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 2 of the License, or (at
+ *  your option) any later version.
+ *
+ *  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, write to the Free Software
+ *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ *  MA 02110-1301, USA.
+ *
+ *  Copyright © 2006 Pierre Habouzit
+ */
 /*
  * Copyright notice from original mutt:
  * Copyright (C) 1996-2002 Michael R. Elkins <me@mutt.org>
diff --git a/alias.h b/alias.h
index 88fb81d..80ba447 100644 (file)
--- a/alias.h
+++ b/alias.h
@@ -1,3 +1,21 @@
+/*
+ *  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 2 of the License, or (at
+ *  your option) any later version.
+ *
+ *  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, write to the Free Software
+ *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ *  MA 02110-1301, USA.
+ *
+ *  Copyright © 2006 Pierre Habouzit
+ */
 /*
  * Copyright notice from original mutt:
  * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
 #include <lib-mime/mime.h>
 
 typedef struct alias_t {
-  struct alias_t *next;
-  char *name;
-  address_t *addr;
-  short tagged;
-  short del;
-  short num;
+    struct alias_t *next;
+    char *name;
+    address_t *addr;
+    short tagged;
+    short del;
+    short num;
 } alias_t;
 
 DO_INIT(alias_t, alias);