blob: 34ef86c8f2bf295b24ae7e25528a1dbb137febf1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include "fastfetch.h"
#include "modules/cursor/option.h"
typedef struct FFCursorResult {
FFstrbuf theme;
FFstrbuf size;
FFstrbuf error;
} FFCursorResult;
void ffDetectCursor(FFCursorResult* result);
|