calc-common.h
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:1k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. /* Prototypes etc for calc program.
  2. Copyright 2001 Free Software Foundation, Inc.
  3. This file is part of the GNU MP Library.
  4. This program is free software; you can redistribute it and/or modify it under
  5. the terms of the GNU General Public License as published by the Free Software
  6. Foundation; either version 3 of the License, or (at your option) any later
  7. version.
  8. This program is distributed in the hope that it will be useful, but WITHOUT ANY
  9. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  10. PARTICULAR PURPOSE.  See the GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License along with
  12. this program.  If not, see http://www.gnu.org/licenses/.  */
  13. #include <stddef.h>  /* for size_t */
  14. #ifndef NO_CALC_H
  15. #include "calc.h"
  16. #endif
  17. #include "calc-config.h"
  18. struct calc_keywords_t {
  19.   char  *name;
  20.   int   value;
  21. };
  22. extern int  calc_option_readline;
  23. extern int  calc_more_input;
  24. extern const struct calc_keywords_t  calc_keywords[];
  25. int calc_input (char *buf, size_t max_size);
  26. void calc_init_readline (void);