diff options
| author | seivarya <[email protected]> | 2026-06-20 18:46:10 +0530 |
|---|---|---|
| committer | seivarya <[email protected]> | 2026-06-20 18:46:10 +0530 |
| commit | b5186a5a724649e9eb71fdfbaf3c2a84b36d7c9c (patch) | |
| tree | ac664730e758ef50f8472831fada93c6e8f7c5d7 /include/reader.h | |
| parent | 8798eafd4cc4b32c590a40c276c09b830c5d62da (diff) | |
[fix]: fixed incorrect rendering of words due to missing delimeters
Diffstat (limited to 'include/reader.h')
| -rw-r--r-- | include/reader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/reader.h b/include/reader.h index 8b61e6c..27b7a90 100644 --- a/include/reader.h +++ b/include/reader.h @@ -67,6 +67,6 @@ int get_cursor_pos(int *rows, int *cols); int get_window_size(int *rows, int *cols); int is_number(char *strnum); -size_t split(const std::string &txt, std::vector<std::string> &strings, char ch); +size_t split(const std::string &txt, std::vector<std::string> &strings, const std::string &delims); |
