history.h 274 B

12345678910
  1. /* SPDX-License-Identifier: Apache-2.0 */
  2. /*
  3. * Copyright (C) 2013 Intel Corporation
  4. *
  5. */
  6. void history_store(const char *filename);
  7. void history_restore(const char *filename);
  8. void history_add_line(const char *line);
  9. int history_get_line(int n, char *buf, int buf_size);