summaryrefslogtreecommitdiff
path: root/rust/libnewsboat-ffi/src/utils.rs
diff options
context:
space:
mode:
authorGravatar Raphael Nestler <raphael.nestler@gmail.com> 2021-03-21 11:17:58 +0100
committerGravatar Raphael Nestler <raphael.nestler@gmail.com> 2021-03-21 11:21:08 +0100
commit793113f4e3ac1eb848df46b1e73fca486bc1df10 (patch)
treef2d926cf46f88341dbe2de86467d97eb03c5d2cb /rust/libnewsboat-ffi/src/utils.rs
parent48ae63d47f425eb542e981df3e06cbf608df1123 (diff)
downloadnewsboat-793113f4e3ac1eb848df46b1e73fca486bc1df10.tar.gz
newsboat-793113f4e3ac1eb848df46b1e73fca486bc1df10.tar.zst
newsboat-793113f4e3ac1eb848df46b1e73fca486bc1df10.zip
Remove C++ utils::convert_text since it isn't used anywhere
Diffstat (limited to 'rust/libnewsboat-ffi/src/utils.rs')
-rw-r--r--rust/libnewsboat-ffi/src/utils.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/rust/libnewsboat-ffi/src/utils.rs b/rust/libnewsboat-ffi/src/utils.rs
index c0dceef5..b1577d0d 100644
--- a/rust/libnewsboat-ffi/src/utils.rs
+++ b/rust/libnewsboat-ffi/src/utils.rs
@@ -84,7 +84,6 @@ mod bridged {
fn run_program(argv: &Vec<String>, input: &str) -> String;
fn translit(tocode: &str, fromcode: &str) -> String;
- fn convert_text(text: &[u8], tocode: &str, fromcode: &str) -> Vec<u8>;
fn utf8_to_locale(text: &str) -> Vec<u8>;
fn locale_to_utf8(text: &[u8]) -> String;
}