]> granicus.if.org Git - graphviz/commitdiff
mm2gv: remove unused 'mm_write_banner'
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 8 Apr 2022 15:17:02 +0000 (08:17 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Mon, 11 Apr 2022 02:54:35 +0000 (19:54 -0700)
cmd/tools/mmio.c
cmd/tools/mmio.h

index 8c25e722319a2e7d63ef875b2cf3911b492b8dc9..effb523bea5ca380b992523147eff94f794df500 100644 (file)
@@ -134,19 +134,6 @@ int mm_read_mtx_crd_size(FILE * f, int *M, int *N, int *nz)
 
 /*-------------------------------------------------------------------------*/
 
-int mm_write_banner(FILE * f, MM_typecode matcode)
-{
-    char *str = mm_typecode_to_str(matcode);
-    int ret_code;
-
-    ret_code = fprintf(f, "%s %s\n", MatrixMarketBanner, str);
-    free(str);
-    if (ret_code != 2)
-       return MM_COULD_NOT_WRITE_FILE;
-    else
-       return 0;
-}
-
 char *mm_typecode_to_str(MM_typecode matcode)
 {
     char buffer[MM_MAX_LINE_LENGTH];
index a093d988b134aba396a629c8b49d9861d4d8dec4..cb915ec1843b3fc64fab9e0eab0b1998d1be37c9 100644 (file)
@@ -28,8 +28,6 @@ char *mm_typecode_to_str(MM_typecode matcode);
 int mm_read_banner(FILE * f, MM_typecode * matcode);
 int mm_read_mtx_crd_size(FILE * f, int *M, int *N, int *nz);
 
-int mm_write_banner(FILE * f, MM_typecode matcode);
-
 /********************* MM_typecode query fucntions ***************************/
 
 #define mm_is_matrix(typecode) ((typecode)[0]=='M')