/** * @file text_history.h * @author CuBeatSystems * @author Shinichiro Nakamura * @copyright * =============================================================== * Natural Tiny Shell (NT-Shell) Version 0.3.1 * =============================================================== * Copyright (c) 2010-2016 Shinichiro Nakamura * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without * restriction, including without limitation the rights to use, * copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following * conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. */ #ifndef TEXT_HISTORY_H #define TEXT_HISTORY_H #include "ntconf.h" /** * @brief Maximum length per a history. */ #define TEXTHISTORY_MAXLEN (NTCONF_EDITOR_MAXLEN) /** * @brief Depth of the history. */ #define TEXTHISTORY_DEPTH (NTCONF_HISTORY_DEPTH) /** * @brief Structure of the text history module. */ typedef struct { /** * @brief History buffer. */ char history[TEXTHISTORY_MAXLEN * TEXTHISTORY_DEPTH]; /** * @brief Read pointer. */ int rp; /** * @brief Write pointer. */ int wp; } text_history_t; #ifdef __cplusplus extern "C" { #endif void text_history_init(text_history_t *p); int text_history_write(text_history_t *p, char *buf); int text_history_read(text_history_t *p, char *buf, const int siz); int text_history_read_point_next(text_history_t *p); int text_history_read_point_prev(text_history_t *p); int text_history_find(text_history_t *p, const int index, const char *text, char *buf, const int siz); #ifdef __cplusplus } #endif #endif