kernel-dev/include/kernel/interrupt.h

29 lines
359 B
C
Raw Normal View History

#ifndef INTERRUPT_H
#define INTERRUPT_H 1
/**
* @name interrupt_open
* @addindex
*
* ```c
* void interrupt_open();
* ```
*
*
*/
void interrupt_open();
/**
* @name interrupt_close
* @addindex
*
* ```c
* void interrupt_close();
* ```
*
*
*/
void interrupt_close();
#endif