mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 10:24:58 +02:00
c8451cab52
Fix #796
15 lines
241 B
C
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);
|