params.h
上传用户:lengbin
上传日期:2010-03-31
资源大小:121k
文件大小:1k
开发平台:

C/C++

  1. /*----------------------------------------------------------------------
  2.   File    : params.h
  3.   Contents: command line parameter retrieval
  4.   Author  : Christian Borgelt
  5.   History : 05.06.2003 file created
  6. ----------------------------------------------------------------------*/
  7. #ifndef __PARAMS__
  8. #define __PARAMS__
  9. /*----------------------------------------------------------------------
  10.   Functions
  11. ----------------------------------------------------------------------*/
  12. extern int getints   (char *s, char **end, int n, ...);
  13. extern int getdbls   (char *s, char **end, int n, ...);
  14. extern int getintvec (char *s, char **end, int n, int    *p);
  15. extern int getdblvec (char *s, char **end, int n, double *p);
  16. #endif