mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
9 lines
198 B
C
9 lines
198 B
C
#include "fastfetch.h"
|
|
#include "battery.h"
|
|
|
|
const char* ffDetectBatteryImpl(FFinstance* instance, FFlist* results)
|
|
{
|
|
FF_UNUSED(instance, results)
|
|
return "Not supported on this platform";
|
|
}
|