mirror of
https://github.com/kenshineto/kern.git
synced 2025-04-21 20:57:25 +00:00
17 lines
252 B
C
17 lines
252 B
C
/**
|
|
* @file drivers.h
|
|
*
|
|
* @author Freya Murphy <freya@freyacat.org>
|
|
*
|
|
* Entrypoint for initalizing all devices
|
|
*/
|
|
|
|
#ifndef DRIVERS_H_
|
|
#define DRIVERS_H_
|
|
|
|
/**
|
|
* Initalize all supported drivers
|
|
*/
|
|
void drivers_init(void);
|
|
|
|
#endif /* drivers.h */
|