Files
fastfetch/src/detection/editor/editor.h
T
2024-05-28 10:23:29 +08:00

15 lines
241 B
C

#pragma once
#include "fastfetch.h"
typedef struct FFEditorResult
{
const char* type;
FFstrbuf name;
FFstrbuf exe;
FFstrbuf path;
FFstrbuf version;
} FFEditorResult;
const char* ffDetectEditor(FFEditorResult* result);