File: string.cc

package info (click to toggle)
abacus 0.9.13-3
  • links: PTS
  • area: main
  • in suites: slink
  • size: 6,308 kB
  • ctags: 5,121
  • sloc: ansic: 27,541; cpp: 11,425; tcl: 7,564; makefile: 386; yacc: 327; lex: 265; sh: 221
file content (33 lines) | stat: -rw-r--r-- 816 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// $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
//