| 
 
  | 
    
     | mmio_63_unpacked |  
     | Makefile,
      Makefile.none,
      Makefile.pro,
      RCS_version,
      README,
      README.src,
      cfmmio.c,
      cftest,
      cmmio.c,
      copyright.C,
      copyright.Fortran,
      ctest,
      description.C,
      description.Fortran,
      description.all,
      fcmmio.f,
      fctest,
      fmmio.f,
      fout.f,
      ftest,
      gagcomp.dat,
      gagfull.dat,
      make.version,
      mmio.c,
      mmio.h,
      mmio.inc,
      mmio_convert.c,
      mmio_def.h,
      mmio_uncompress.f,
      mmioc.c,
      mmioc.h,
      mmiof.c,
      my_cp,
      prepmake,
      title.C,
      title.Fortran, |  |  | CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC
C *** $RCSfile: mmio.inc,v $
C *** $Revision: 1.4 $
C *** $Date: 1995/02/07 17:48:22 $
CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC
C     *** maximum number of atoms connected to a given atom:
      INTEGER MMIO_MAXBOND
C     *** length of string passed to/from library
      INTEGER MMIO_L_STRLEN, MMIO_S_STRLEN
C     *** after reading a CT, return one of these status values: note that
      INTEGER MMIO_COMPRESSED
      INTEGER MMIO_FULL
      INTEGER MMIO_OK
      INTEGER MMIO_EOF
      INTEGER MMIO_DONE
      INTEGER MMIO_ERR
      INTEGER MMIO_BOF
C     *** file-opening modes:
      INTEGER MMIO_READ
      INTEGER MMIO_WRITE
      INTEGER MMIO_APPEND
      INTEGER MMIO_UNUSED
CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC
C     *** maximum number of atoms connected to a given atom:
      PARAMETER( MMIO_MAXBOND = 6 )
C     *** length of string passed to/from library:
      PARAMETER( MMIO_L_STRLEN = 200 )
      PARAMETER( MMIO_S_STRLEN = 4 )
C     *** after reading a CT, return one of these status values:
      PARAMETER( MMIO_COMPRESSED = 1 )
      PARAMETER( MMIO_FULL = 3 )
      PARAMETER( MMIO_OK = 4 )
      PARAMETER( MMIO_EOF = 5 )
      PARAMETER( MMIO_DONE = 6 )
      PARAMETER( MMIO_ERR = 7 )
      PARAMETER( MMIO_BOF = 8 )
C     *** file-opening modes:
      PARAMETER( MMIO_READ = 0 )
      PARAMETER( MMIO_WRITE = 1 )
      PARAMETER( MMIO_APPEND = 2 )
      PARAMETER( MMIO_UNUSED = 3 )
CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC
 |