summaryrefslogtreecommitdiff
path: root/libguile/unicode.c
diff options
context:
space:
mode:
Diffstat (limited to 'libguile/unicode.c')
-rw-r--r--libguile/unicode.c54
1 files changed, 28 insertions, 26 deletions
diff --git a/libguile/unicode.c b/libguile/unicode.c
index 65d319a1d..a48a2225a 100644
--- a/libguile/unicode.c
+++ b/libguile/unicode.c
@@ -1,35 +1,43 @@
-/* Copyright (C) 2014 Free Software Foundation, Inc.
- *
- * This library is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This library 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 Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library. If not, see
- * <http://www.gnu.org/licenses/>.
- */
+/* Copyright 2014,2018
+ Free Software Foundation, Inc.
+
+ This file is part of Guile.
+
+ Guile is free software: you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ Guile 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 Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with Guile. If not, see
+ <https://www.gnu.org/licenses/>. */
+
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <ctype.h>
#include <limits.h>
+#include <string.h>
#include <unicase.h>
#include <unictype.h>
#include <uniname.h>
-#include "libguile/_scm.h"
-#include "libguile/validate.h"
+#include "chars.h"
+#include "extensions.h"
+#include "gsubr.h"
+#include "strings.h"
+#include "version.h"
+
+#include "unicode.h"
-#include "libguile/unicode.h"
@@ -75,7 +83,7 @@ static void
scm_load_unicode (void)
{
#ifndef SCM_MAGIC_SNARFER
-#include "libguile/unicode.x"
+#include "unicode.x"
#endif
}
@@ -87,9 +95,3 @@ scm_init_unicode (void)
(scm_t_extension_init_func)scm_load_unicode,
NULL);
}
-
-/*
- Local Variables:
- c-file-style: "gnu"
- End:
-*/