]> granicus.if.org Git - graphviz/commitdiff
- merge libdotneato into libgvc
authorellson <devnull@localhost>
Wed, 20 Jul 2005 02:39:16 +0000 (02:39 +0000)
committerellson <devnull@localhost>
Wed, 20 Jul 2005 02:39:16 +0000 (02:39 +0000)
- make libcommon a convenience library and link into libgvc
- convert demo to use libgvc

lib/common/strcasecmp.c
lib/common/strncasecmp.c

index 699e12fc848cf96d96ed97fdf30467ffae886e85..20341724460977923ccc3b046d9df2914992f453 100644 (file)
 *              AT&T Research, Florham Park NJ             *
 **********************************************************/
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #ifndef HAVE_STRCASECMP
 
-#include <render.h>
 #include <string.h>
 #include <ctype.h>
 
index 37cea894df6380c1245255cf1ca85470ab330083..e0bcb28ca82313b840c5f363e8eaf8ef8df260ff 100644 (file)
 *              AT&T Research, Florham Park NJ             *
 **********************************************************/
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #ifndef HAVE_STRNCASECMP
 
-#include <render.h>
 #include <string.h>
 #include <ctype.h>
 
-
 int strncasecmp(const char *s1, const char *s2, unsigned int n)
 {
     if (n == 0)