Fix style issues (#1458)

This commit is contained in:
Fangjun Kuang
2024-10-24 11:15:08 +08:00
committed by GitHub
parent ceb69ebd94
commit b3e05f6dc4
55 changed files with 155 additions and 117 deletions

View File

@@ -0,0 +1,18 @@
// sherpa-onnx/csrc/fst-utils.h
//
// Copyright (c) 2024 Xiaomi Corporation
#ifndef SHERPA_ONNX_CSRC_FST_UTILS_H_
#define SHERPA_ONNX_CSRC_FST_UTILS_H_
#include <string>
#include "fst/fstlib.h"
namespace sherpa_onnx {
fst::Fst<fst::StdArc> *ReadGraph(const std::string &filename);
}
#endif // SHERPA_ONNX_CSRC_FST_UTILS_H_