os/libc/initrd.h

21 lines
295 B
C
Raw Normal View History

2020-07-26 15:38:29 -05:00
/**
* \file
*/
#ifndef INITRD_H
#define INITRD_H
2020-07-26 15:38:29 -05:00
/**
* Gets the size of the initrd
* \return the size of the initrd
*/
long initrd_sz();
/**
* Copies the initrd to a specified area in memory
* \param initrd the address to copy the initrd to
*/
void initrd_get(char* initrd);
#endif