- 重构模块使用新的代码风格 - 老代码 (src 目录下的代码) 继续使用之前的代码风格 通过在需要不同代码风格的目录下放对应 .clang-format 配置文件实现
10 lines
181 B
C
10 lines
181 B
C
#pragma once
|
|
|
|
#include <stddef.h>
|
|
|
|
#include "core/backend.h"
|
|
#include "core/types.h"
|
|
|
|
backend_detect_t *
|
|
output_remove_duplication(const output_info_t *output, const size_t count);
|