From c506f77e1ccdc2a1c40c42a681d16977772da633 Mon Sep 17 00:00:00 2001 From: ellson Date: Mon, 23 Feb 2009 15:25:21 +0000 Subject: [PATCH] remove unused isAscii funtion --- plugin/core/gvrender_core_svg.c | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/plugin/core/gvrender_core_svg.c b/plugin/core/gvrender_core_svg.c index 9fc5657bf..ea1305741 100644 --- a/plugin/core/gvrender_core_svg.c +++ b/plugin/core/gvrender_core_svg.c @@ -114,18 +114,6 @@ static void svg_comment(GVJ_t * job, char *str) gvputs(job, " -->\n"); } -/* isAscii: - * Return true if all characters in the string are ascii. - */ -static int isAscii (char* s) -{ - int c; - while ((c = *s++) != '\0') { - if (!isascii (c)) return 0; - } - return 1; -} - static void svg_begin_job(GVJ_t * job) { char *s; -- 2.40.0