emmylua_codestyle 0.6.0

Lua code formatting lib with EmmyLuaCodeStyle
Documentation
#ifndef CODE_FORMAT_C_LIB_H
#define CODE_FORMAT_C_LIB_H


#include <cstdint>// 使用固定大小的整数类型


#if defined(_WIN32)
#define EMMY_API __declspec(dllexport)

#elif defined(__GNUC__)
#define EMMY_API __attribute__((visibility("default")))

#else
#define EMMY_API

#endif

extern "C" {

struct RangeFormatResult {
    int32_t StartLine;
    int32_t StartCharacter;
    int32_t EndLine;
    int32_t EndCharacter;
    char *Text;
};

struct FormattingOptions {
    uint32_t indent_size;
    bool use_tabs;
    bool insert_final_newline;
    bool non_standard_symbol;
};

EMMY_API char *
ReformatLuaCode(const char *code, const char *uri, FormattingOptions options);

EMMY_API RangeFormatResult RangeFormatLuaCode(const char *code, const char *uri,
                                              int32_t startLine, int32_t startCol, int32_t endLine, int32_t endCol,
                                              FormattingOptions options);

EMMY_API void FreeReformatResult(char *ptr);

EMMY_API void UpdateCodeStyle(const char *workspaceUri, const char *configPath);

EMMY_API void RemoveCodeStyle(const char *workspaceUri);

EMMY_API char *CheckCodeStyle(const char *code, const char *uri);
}


#endif// CODE_FORMAT_C_LIB_H