// $Header: /home/abyss/prj/tcl_interf/RCS/string.cc,v 1.1 1996/04/27 11:35:04 aml Exp $ /************************************************************** Program: SMOG - Selection of Minimal Ordered Graphs Author: Arlindo Oliveira (aml@ic.eecs.berkeley.edu) Copyright 1994 University of California Berkeley / CAD Group This software may not be distributed without permission of the copyright holder. ****************************************************************/ #include "string.hh" ostream &operator<<(ostream &s, string &st) { s << (char*) st; return(s); } // $Log: string.cc,v $ // Revision 1.1 1996/04/27 11:35:04 aml // Initial revision // // Revision 1.2 1994/09/10 16:04:15 aml // Made changes to compile on hp. // // Revision 1.1 1994/09/08 00:02:45 aml // Initial revision //