kern/kernel/include/comus/drivers.h
2025-04-03 23:05:46 -04:00

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 */