21 lines
761 B
C
21 lines
761 B
C
|
/* ------------------------------------------------------------------
|
||
|
* -- _____ ______ _____ -
|
||
|
* -- |_ _| | ____|/ ____| -
|
||
|
* -- | | _ __ | |__ | (___ Institute of Embedded Systems -
|
||
|
* -- | | | '_ \| __| \___ \ Zuercher Hochschule Winterthur -
|
||
|
* -- _| |_| | | | |____ ____) | (University of Applied Sciences) -
|
||
|
* -- |_____|_| |_|______|_____/ 8401 Winterthur, Switzerland -
|
||
|
* ------------------------------------------------------------------
|
||
|
* --
|
||
|
* -- Project : CT2 lab - Linking
|
||
|
* --
|
||
|
* -- $Id$
|
||
|
* ------------------------------------------------------------------
|
||
|
*/
|
||
|
#ifndef _TOGGLE_H_
|
||
|
#define _TOGGLE_H_
|
||
|
|
||
|
void toggle(void);
|
||
|
|
||
|
#endif
|