mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
9 lines
150 B
C
9 lines
150 B
C
#include "common/kmod.h"
|
|
#include <sys/param.h>
|
|
#include <sys/module.h>
|
|
|
|
bool ffKmodLoaded(const char* modName)
|
|
{
|
|
return modfind(modName) >= 0;
|
|
}
|