commit b02b2726e3865c15953dbd8946d43443444ea3ef
parent 2015296f5d228f7b9264dbf57b827fec33aca14a
Author: Ricardo Mones <ricardo@mones.org>
Date: Fri, 12 Apr 2024 16:46:46 +0200
Remove unused defines and normalise header file
Diffstat:
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/common/uuencode.c b/src/common/uuencode.c
@@ -1,6 +1,6 @@
/*
* Claws Mail -- a GTK based, lightweight, and fast e-mail client
- * Copyright (C) 1999,2000 Hiroyuki Yamamoto
+ * Copyright (C) 1999-2024 Hiroyuki Yamamoto and the Claws Mail Team
*
* 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
@@ -14,7 +14,6 @@
*
* 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 "config.h"
diff --git a/src/common/uuencode.h b/src/common/uuencode.h
@@ -1,6 +1,6 @@
/*
* Claws Mail -- a GTK based, lightweight, and fast e-mail client
- * Copyright (C) 1999,2000 Hiroyuki Yamamoto
+ * Copyright (C) 1999-2024 Hiroyuki Yamamoto and the Claws Mail Team
*
* 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
@@ -14,10 +14,11 @@
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
*/
+#ifndef __UUENCODE_H__
+#define __UUENCODE_H__
+
int fromuutobits(char *, const char *);
-#define X_UUENCODE_END_LINE '`'
-#define UUENCODE_END_LINE ' '
+#endif /* __UUENCODE_H__ */