-- Copyright (C) 1985, 1986 by Xerox Corporation. All rights reserved.
-- CFormatIOUtil.mesa
-- NFS 19-Jun-85 15:32:33
DIRECTORY
CIOLib USING [FilePtr],
CString USING [CString];
CFormatIOUtil: DEFINITIONS = {
DoScan: PROCEDURE [
iop: CIOLib.FilePtr, fmt: CString.CString, argp: LONG POINTER TO LONG POINTER]
RETURNS [INTEGER];
DoPrint: PROCEDURE [
iop: CIOLib.FilePtr, fmt: CString.CString, argp: LONG POINTER]
RETURNS [charsPrinted: INTEGER];
}.