blob: efd0f736f876fc8e1e908b64368c71f6c0499369 (
plain) (
blame)
1
2
3
4
5
6
7
|
#include "fastfetch.h"
#include "battery.h"
const char* ffDetectBattery(FFBatteryOptions* options, FFlist* results) {
FF_UNUSED(options, results)
return "Not supported on this platform";
}
|