cpp, meta,
C++
// brcode.h3
private: BOOL BRCode :: is_used
/* -----------------------------------------------------------------------------
return BOOL( "name is used in code" )
-----------------------------------------------------------------------------
*/ (
char * name
, char * code // name of the code file ) ;
private: void BRCode :: no_Comment
/* -----------------------------------------------------------------------------
Delete from the code ALL comment.
-----------------------------------------------------------------------------
*/ (
char * from
, char * to
) ;
private: char BRCode :: Be
// -----------------------------------------------------------------------------
(
char * s
) ;
private: int BRCode :: pretty
/* -----------------------------------------------------------------------------
Make 'to a pretty version of 'from
Precondition: '{' or '}' are always following immediately a '\n'.
-----------------------------------------------------------------------------
*/ (
BOOL mitZNr
, char * from // name of input file, char * to
) ;
private: void BRCode :: param
/* -----------------------------------------------------------------------------
remove param type
-----------------------------------------------------------------------------
*/ (
char * c
) ;
private: void BRCode :: comma
/* -----------------------------------------------------------------------------
replace comma by line feed
-----------------------------------------------------------------------------
*/ (
char * c
, char * e
) ;
private: BOOL BRCode :: new_section
// -----------------------------------------------------------------------------
(
char * c
, BOOL indent
, BOOL mitZNr
) ;
private: BOOL BRCode :: same_prefix
/* -----------------------------------------------------------------------------
Show all methods called by the caller
-----------------------------------------------------------------------------
*/ (
char * s1
, char * s2
, char e
) ;
private: void BRCode :: callees
/* -----------------------------------------------------------------------------
Show all methods called by the caller
-----------------------------------------------------------------------------
*/ (
FILE * f
, char * spaces
, char * caller
, Btree & calls
, Btree & schon
) ;