23 lines
310 B
C
23 lines
310 B
C
/*************
|
|
* Header file for circuits.c
|
|
* 1999 E. Rouat
|
|
************/
|
|
|
|
#ifndef CIRCUITS_H_INCLUDED
|
|
#define CIRCUITS_H_INCLUDED
|
|
|
|
|
|
|
|
struct subcirc {
|
|
char *sc_name; /* Whatever... */
|
|
} ;
|
|
|
|
|
|
extern struct circ *ft_curckt; /* The default active circuit. */
|
|
|
|
|
|
void ft_newcirc(struct circ *ckt);
|
|
|
|
|
|
#endif
|