X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fglob.c;h=c0b3c905ad3e345f45e582beb97db4467907cdae;hb=d594340cb1ae007a92d094ae67116f9f622f2b5d;hp=83dd2b66ef49ac75ed1b8592469022dfe3958c37;hpb=92bfefccd465052e492f669ce561aa25b0110283;p=pspp-builds.git diff --git a/src/glob.c b/src/glob.c index 83dd2b66..c0b3c905 100644 --- a/src/glob.c +++ b/src/glob.c @@ -14,201 +14,51 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA - 02111-1307, USA. */ + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. */ #include #include "glob.h" -#include "error.h" -#include -#include - -#if TIME_WITH_SYS_TIME -#include -#include -#else -#if HAVE_SYS_TIME_H -#include -#else #include -#endif -#endif - -#if HAVE_LIBHISTORY -#if HAVE_READLINE_HISTORY_H -#include -#else /* no readline/history.h */ -extern void using_history (); -extern int read_history (); -extern void stifle_history (); -#endif /* no readline/history.h */ -#endif /* -lhistory */ - -#if HAVE_FPU_CONTROL_H -#include -#elif __BORLANDC__ -#include -#include -#endif - -#if __DJGPP__ -#include -#elif defined (__WIN32__) && defined (__BORLANDC__) -#undef gettext -#include -#define gettext(STRING) \ - STRING -#endif - -#if HAVE_LOCALE_H -#include -#endif - -#if HAVE_FENV_H -#include -#endif - -#include "alloc.h" -#include "command.h" -#include "do-ifP.h" -#include "error.h" -#include "expr.h" -#include "file-handle.h" -#include "filename.h" -#include "getline.h" -#include "hash.h" -#include "julcal/julcal.h" -#include "lexer.h" -#include "magic.h" -#include "main.h" -#include "settings.h" #include "str.h" -#include "var.h" -#include "version.h" -#include "vfm.h" +#include "strftime.h" /* var.h */ struct dictionary *default_dict; struct expression *process_if_expr; -struct trns_header **t_trns; -int n_trns; -int m_trns; -int f_trns; +struct transformation *t_trns; +size_t n_trns, m_trns, f_trns; int FILTER_before_TEMPORARY; struct file_handle *default_handle; - -struct ctl_stmt *ctl_stack; - -/* log.h */ -char *logfn; -FILE *logfile; -int logging; /* Functions. */ -static void get_date (void); - - -void -init_glob (int argc UNUSED, char **argv) -{ - /* FIXME: Allow i18n of other locale items (besides LC_MESSAGES). */ -#if ENABLE_NLS -#if HAVE_LC_MESSAGES - setlocale (LC_MESSAGES, ""); -#endif - setlocale (LC_MONETARY, ""); - bindtextdomain (PACKAGE, locale_dir); - textdomain (PACKAGE); -#endif /* ENABLE_NLS */ - - fn_init (); - getl_initialize (); - - /* PORTME: If your system/OS has the nasty tendency to halt with a - SIGFPE whenever there's a floating-point overflow (or other - exception), be sure to mask off those bits in the FPU here. - PSPP wants a guarantee that, no matter what boneheaded - floating-point operation it performs, the process will not halt. */ -#if HAVE_FEHOLDEXCEPT - { - fenv_t foo; - - feholdexcept (&foo); - } -#elif HAVE___SETFPUCW && defined(_FPU_IEEE) - __setfpucw (_FPU_IEEE); -#elif __BORLANDC__ - _control87 (0xffff, 0x137f); -#endif - - /* var.h */ - default_dict = dict_create (); - - last_vfm_invocation = time (NULL); - - /* lexer.h */ - ds_init (&tokstr, 64); - - /* common.h */ - { - char *cp; - - pgmname = argv[0]; - for (;;) - { - cp = strchr (pgmname, DIR_SEPARATOR); - if (!cp) - break; - pgmname = &cp[1]; - } - cur_proc = NULL; - } - - - init_settings(); - - /* log.h */ - logging = 1; - logfn = xstrdup ("pspp.log"); - logfile = NULL; - - /* file-handle.h */ - fh_init_files (); - - get_date (); -} - static void -get_date (void) +get_cur_date (char cur_date[12]) { + time_t now = time (NULL); - time_t t; - struct tm *tmp; - - if ((time_t) -1 == time (&t)) + if (now != (time_t) -1) { - strcpy (curdate, "?? ??? 2???"); - return; + struct tm *tm = localtime (&now); + if (tm != NULL) + { + strftime (cur_date, 12, "%d %b %Y", tm); + return; + } } - tmp = localtime (&t); - - strftime (curdate, 12, "%d %b %Y",tmp); + strcpy (cur_date, "?? ??? 2???"); } -#if __BORLANDC__ -int -_RTLENTRY _EXPFUNC _matherr (struct exception _FAR *__e) +const char * +get_start_date (void) { - return 1; -} + static char start_date[12]; -int -_RTLENTRY _EXPFUNC _matherrl (struct _exceptionl _FAR *__e) -{ - return 1; + if (start_date[0] == '\0') + get_cur_date (start_date); + return start_date; } -#endif