]> granicus.if.org Git - graphviz/commitdiff
remove unused sfputu() and variants
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 23 Sep 2020 03:38:02 +0000 (20:38 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 30 Sep 2020 00:01:03 +0000 (17:01 -0700)
lib/sfio/Makefile.am
lib/sfio/Sfio_f/Makefile.am
lib/sfio/Sfio_f/_sfputu.c [deleted file]
lib/sfio/sfio.h
lib/sfio/sfio.vcxproj
lib/sfio/sfio.vcxproj.filters
lib/sfio/sfputu.c [deleted file]

index ee8f4360b10305d40b55530d2c8afe878a6e1259..bc74569a902f1f63d426f7c08195b560ea73f859 100644 (file)
@@ -14,7 +14,7 @@ libsfio_C_la_SOURCES = sfclose.c sfclrlock.c sfcvt.c sfdisc.c \
        sfmode.c sfnew.c sfnotify.c \
        sfnputc.c sfopen.c sfpkrd.c sfpoll.c sfpool.c \
        sfprintf.c sfprints.c sfpurge.c \
-       sfputr.c sfputu.c sfraise.c sfrd.c sfread.c sfreserve.c \
+       sfputr.c sfraise.c sfrd.c sfread.c sfreserve.c \
        sfresize.c sfscanf.c sfseek.c sfset.c sfsetbuf.c sfsetfd.c \
        sfsize.c sfsk.c sfstack.c sfstrtod.c sfswap.c sfsync.c \
        sftable.c sftell.c sftmp.c sfungetc.c sfvprintf.c \
index 1bca9221c9d1d06f7b35353f3de157482be5437e..3c6c61feb6efe2030bb4ccb54e1c7e5b64e7c7b5 100644 (file)
@@ -7,5 +7,5 @@ noinst_LTLIBRARIES = libsfiof_C.la
 
 libsfiof_C_la_SOURCES = \
        _sffileno.c _sfgetc.c _sfputc.c \
-       _sfputu.c _sfslen.c _sfstacked.c \
+       _sfslen.c _sfstacked.c \
        _sfulen.c _sfvalue.c
diff --git a/lib/sfio/Sfio_f/_sfputu.c b/lib/sfio/Sfio_f/_sfputu.c
deleted file mode 100644 (file)
index dc0a7c8..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-/* $Id$ $Revision$ */
-/* vim:set shiftwidth=4 ts=8: */
-
-/*************************************************************************
- * Copyright (c) 2011 AT&T Intellectual Property 
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors: See CVS logs. Details at http://www.graphviz.org/
- *************************************************************************/
-
-#include       <sfio/sfhdr.h>
-
-#undef sfputu
-
-int sfputu(Sfio_t * f, Sfulong_t u)
-{
-    return __sf_putu(f, u);
-}
index d61575b7adc5c6fb624dbed182b8dd7a7bfc034d..2d619ddea80cac36ce18ee61dfee7f3676d96777 100644 (file)
@@ -339,7 +339,6 @@ extern "C" {
 /* portable handling of primitive types */
     extern int sfulen(Sfulong_t);
 
-    extern int sfputu(Sfio_t *, Sfulong_t);
     extern int sfputc(Sfio_t *, int);
 
     extern Sfdouble_t sfgetd(Sfio_t *);
@@ -348,7 +347,6 @@ extern "C" {
     extern Sfulong_t sfgetm(Sfio_t *, Sfulong_t);
     extern int sfgetc(Sfio_t *);
 
-    extern int _sfputu(Sfio_t *, Sfulong_t);
     extern int _sfflsbuf(Sfio_t *, int);
 
     extern int _sffilbuf(Sfio_t *, int);
@@ -380,7 +378,6 @@ extern "C" {
 #else
 #define _SF_(f)                ((Sfio_t*)(f))
 #endif
-#define __sf_putu(f,v)         (_sfputu(_SF_(f),(Sfulong_t)(v)))
 #define __sf_putc(f,c) (_SF_(f)->next >= _SF_(f)->endw ? \
                         _sfflsbuf(_SF_(f),(int)((unsigned char)(c))) : \
                         (int)(*_SF_(f)->next++ = (unsigned char)(c)) )
@@ -393,7 +390,6 @@ extern "C" {
 #define __sf_value(f)  ((f) ? (_SF_(f)->val) : 0)
 #define __sf_slen()    (_Sfi)
 
-#define sfputu(f,v)                            ( __sf_putu((f),(v))            )
 #define sfputc(f,c)                            ( __sf_putc((f),(c))            )
 #define sfgetc(f)                              ( __sf_getc(f)                  )
 #define sfulen(v)                              ( __sf_ulen(v)                  )
index 67dd59dc6548f83f59e4606df16cc1e536a3d86a..8cc09691160d739933720b48d1fbaf8f2520a11f 100644 (file)
@@ -99,7 +99,6 @@
     <ClCompile Include="sfio_f\_sffileno.c" />
     <ClCompile Include="sfio_f\_sfgetc.c" />
     <ClCompile Include="sfio_f\_sfputc.c" />
-    <ClCompile Include="sfio_f\_sfputu.c" />
     <ClCompile Include="sfio_f\_sfslen.c" />
     <ClCompile Include="sfio_f\_sfstacked.c" />
     <ClCompile Include="sfio_f\_sfulen.c" />
     <ClCompile Include="sfprints.c" />
     <ClCompile Include="sfpurge.c" />
     <ClCompile Include="sfputr.c" />
-    <ClCompile Include="sfputu.c" />
     <ClCompile Include="sfraise.c" />
     <ClCompile Include="sfrd.c" />
     <ClCompile Include="sfread.c" />
index b82f4f0f43f6a090374965f48bc716f274b5d372..c1f08c16bbab55f28f8b1f74982c457902c8f1c7 100644 (file)
@@ -38,9 +38,6 @@
     <ClCompile Include="sfio_f\_sfputc.c">
       <Filter>Source Files</Filter>
     </ClCompile>
-    <ClCompile Include="sfio_f\_sfputu.c">
-      <Filter>Source Files</Filter>
-    </ClCompile>
     <ClCompile Include="sfio_f\_sfslen.c">
       <Filter>Source Files</Filter>
     </ClCompile>
     <ClCompile Include="sfputr.c">
       <Filter>Source Files</Filter>
     </ClCompile>
-    <ClCompile Include="sfputu.c">
-      <Filter>Source Files</Filter>
-    </ClCompile>
     <ClCompile Include="sfraise.c">
       <Filter>Source Files</Filter>
     </ClCompile>
diff --git a/lib/sfio/sfputu.c b/lib/sfio/sfputu.c
deleted file mode 100644 (file)
index c7ce983..0000000
+++ /dev/null
@@ -1,73 +0,0 @@
-/* $Id$ $Revision$ */
-/* vim:set shiftwidth=4 ts=8: */
-
-/*************************************************************************
- * Copyright (c) 2011 AT&T Intellectual Property 
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors: See CVS logs. Details at http://www.graphviz.org/
- *************************************************************************/
-
-#include       <sfio/sfhdr.h>
-
-/*     Write out an unsigned long value in a portable format.
-**
-**     Written by Kiem-Phong Vo.
-*/
-
-/**
- * @param f write a portable ulong to this stream
- * @param v the unsigned value to be written
- * @param 
- * @param 
- */
-int _sfputu(Sfio_t * f, Sfulong_t v)
-{
-#define N_ARRAY                (2*sizeof(Sfulong_t))
-    uchar *s, *ps;
-    ssize_t n, p;
-    uchar c[N_ARRAY];
-
-    SFMTXSTART(f, -1);
-
-    if (f->mode != SF_WRITE && _sfmode(f, SF_WRITE, 0) < 0)
-       SFMTXRETURN(f, -1);
-    SFLOCK(f, 0);
-
-    /* code v as integers in base SF_UBASE */
-    s = ps = &(c[N_ARRAY - 1]);
-    *s = (uchar) SFUVALUE(v);
-    while ((v >>= SF_UBITS))
-       *--s = (uchar) (SFUVALUE(v) | SF_MORE);
-    n = (ps - s) + 1;
-
-    if (n > 8 || SFWPEEK(f, ps, p) < n)
-       n = SFWRITE(f, (void *) s, n);  /* write the hard way */
-    else {
-       switch (n) {
-       case 8:
-           *ps++ = *s++;
-       case 7:
-           *ps++ = *s++;
-       case 6:
-           *ps++ = *s++;
-       case 5:
-           *ps++ = *s++;
-       case 4:
-           *ps++ = *s++;
-       case 3:
-           *ps++ = *s++;
-       case 2:
-           *ps++ = *s++;
-       case 1:
-           *ps++ = *s++;
-       }
-       f->next = ps;
-    }
-
-    SFOPEN(f, 0);
-    SFMTXRETURN(f, (int) n);
-}