saveargs.c
上传用户:weiliju62
上传日期:2007-01-06
资源大小:619k
文件大小:2k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. /* @(#)saveargs.c 1.7 98/05/31 Copyright 1995 J. Schilling */
  2. /* save argc, argv for command error printing routines */
  3. /*
  4.  * This program is free software; you can redistribute it and/or modify
  5.  * it under the terms of the GNU General Public License as published by
  6.  * the Free Software Foundation; either version 2, or (at your option)
  7.  * any later version.
  8.  *
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; see the file COPYING.  If not, write to
  16.  * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  */
  18. #include <mconfig.h>
  19. #include <standard.h>
  20. #include <strdefs.h>
  21. #include <stdxlib.h>
  22. #include <avoffset.h>
  23. #if !defined(AV_OFFSET) || !defined(FP_INDIR)
  24. # ifdef HAVE_SCANSTACK
  25. # undef HAVE_SCANSTACK
  26. # endif
  27. #endif
  28. #ifdef NO_SCANSTACK
  29. # ifdef HAVE_SCANSTACK
  30. # undef HAVE_SCANSTACK
  31. # endif
  32. #endif
  33. static int ac_saved;
  34. static char **av_saved;
  35. static char *av0_saved;
  36. static char *progname_saved;
  37. static char av0_sp[32]; /* av0 space, avoid malloc() in most cases */
  38. static char prn_sp[32]; /* name space, avoid malloc() in most cases */
  39. static char dfl_str[] = "?";
  40. void save_args(ac, av)
  41. int ac;
  42. char *av[];
  43. {
  44. int slen;
  45. ac_saved = ac;
  46. av_saved = av;
  47. if (av0_saved && av0_saved != av0_sp)
  48. free(av0_saved);
  49. slen = strlen(av[0]) + 1;
  50. if (slen <= sizeof(av0_sp))
  51. av0_saved = av0_sp;
  52. else
  53. av0_saved = malloc(slen);
  54. if (av0_saved)
  55. strcpy(av0_saved, av[0]);
  56. }
  57. int saved_ac()
  58. {
  59. return (ac_saved);
  60. }
  61. char **saved_av()
  62. {
  63. return (av_saved);
  64. }
  65. char *saved_av0()
  66. {
  67. return (av0_saved);
  68. }
  69. void set_progname(name)
  70. const char *name;
  71. {
  72. int slen;
  73. if (progname_saved && progname_saved != prn_sp)
  74. free(progname_saved);
  75. slen = strlen(name) + 1;
  76. if (slen <= sizeof(prn_sp))
  77. progname_saved = prn_sp;
  78. else
  79. progname_saved = malloc(slen);
  80. if (progname_saved)
  81. strcpy(progname_saved, name);
  82. }
  83. char *get_progname()
  84. {
  85. #ifdef HAVE_SCANSTACK
  86. char *progname;
  87. #endif
  88. if (progname_saved)
  89. return (progname_saved);
  90. if (av0_saved)
  91. return (av0_saved);
  92. #ifdef HAVE_SCANSTACK
  93. progname = getav0(); /* scan stack to get argv[0] */
  94. if (progname)
  95. return (progname);
  96. #endif
  97. return (dfl_str);
  98. }