diff options
author | Henry Stiles <henry.stiles@artifex.com> | 1998-07-28 06:22:20 +0000 |
---|---|---|
committer | Henry Stiles <henry.stiles@artifex.com> | 1998-07-28 06:22:20 +0000 |
commit | 5fbdbaab7335a147a3a7890b5c6fc123926815db (patch) | |
tree | 154edc89b06c38333fd6d4b9abaf0ee8740ddf6a /gs/src/zdevcal.c | |
parent | 14cf10e3738f95f7864978c5a4778b50fb39524b (diff) |
This commit was generated by cvs2svn to compensate for changes in r257,
which included commits to RCS files with non-trunk default branches.
git-svn-id: http://svn.ghostscript.com/ghostpcl/trunk/ghostpcl@258 06663e23-700e-0410-b217-a244a6096597
Diffstat (limited to 'gs/src/zdevcal.c')
-rw-r--r-- | gs/src/zdevcal.c | 102 |
1 files changed, 51 insertions, 51 deletions
diff --git a/gs/src/zdevcal.c b/gs/src/zdevcal.c index a2a2c2728..dae05a33a 100644 --- a/gs/src/zdevcal.c +++ b/gs/src/zdevcal.c @@ -1,20 +1,20 @@ /* Copyright (C) 1995 Aladdin Enterprises. All rights reserved. - - This file is part of Aladdin Ghostscript. - - Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND. No author - or distributor accepts any responsibility for the consequences of using it, - or for whether it serves any particular purpose or works at all, unless he - or she says so in writing. Refer to the Aladdin Ghostscript Free Public - License (the "License") for full details. - - Every copy of Aladdin Ghostscript must include a copy of the License, - normally in a plain ASCII text file named PUBLIC. The License grants you - the right to copy, modify and redistribute Aladdin Ghostscript, but only - under certain conditions described in the License. Among other things, the - License requires that the copyright notice and this notice be preserved on - all copies. -*/ + + This file is part of Aladdin Ghostscript. + + Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND. No author + or distributor accepts any responsibility for the consequences of using it, + or for whether it serves any particular purpose or works at all, unless he + or she says so in writing. Refer to the Aladdin Ghostscript Free Public + License (the "License") for full details. + + Every copy of Aladdin Ghostscript must include a copy of the License, + normally in a plain ASCII text file named PUBLIC. The License grants you + the right to copy, modify and redistribute Aladdin Ghostscript, but only + under certain conditions described in the License. Among other things, the + License requires that the copyright notice and this notice be preserved on + all copies. + */ /* zdevcal.c */ /* %Calendar% IODevice */ @@ -28,43 +28,43 @@ private iodev_proc_get_params(calendar_get_params); gx_io_device gs_iodev_calendar = - { "%Calendar%", "Special", - { iodev_no_init, iodev_no_open_device, iodev_no_open_file, - iodev_no_fopen, iodev_no_fclose, - iodev_no_delete_file, iodev_no_rename_file, iodev_no_file_status, - iodev_no_enumerate_files, NULL, NULL, - calendar_get_params, iodev_no_put_params - } - }; +{"%Calendar%", "Special", + {iodev_no_init, iodev_no_open_device, iodev_no_open_file, + iodev_no_fopen, iodev_no_fclose, + iodev_no_delete_file, iodev_no_rename_file, iodev_no_file_status, + iodev_no_enumerate_files, NULL, NULL, + calendar_get_params, iodev_no_put_params + } +}; /* Get the date and time. */ private int -calendar_get_params(gx_io_device *iodev, gs_param_list *plist) -{ int code; - time_t t; - struct tm *pltime; - struct tm ltime; - bool running; +calendar_get_params(gx_io_device * iodev, gs_param_list * plist) +{ + int code; + time_t t; + struct tm *pltime; + struct tm ltime; + bool running; - if ( time(&t) == -1 || (pltime = localtime(&t)) == 0 ) - { ltime.tm_sec = ltime.tm_min = ltime.tm_hour = - ltime.tm_mday = ltime.tm_mon = ltime.tm_year = 0; - running = false; - } - else - { ltime = *pltime; - ltime.tm_year += 1900; - ltime.tm_mon++; /* 1-origin */ - running = true; - } - if ( (code = param_write_int(plist, "Year", <ime.tm_year)) < 0 || - (code = param_write_int(plist, "Month", <ime.tm_mon)) < 0 || - (code = param_write_int(plist, "Day", <ime.tm_mday)) < 0 || - (code = param_write_int(plist, "Weekday", <ime.tm_wday)) < 0 || - (code = param_write_int(plist, "Hour", <ime.tm_hour)) < 0 || - (code = param_write_int(plist, "Minute", <ime.tm_min)) < 0 || - (code = param_write_int(plist, "Second", <ime.tm_sec)) < 0 - ) - return code; - return param_write_bool(plist, "Running", &running); + if (time(&t) == -1 || (pltime = localtime(&t)) == 0) { + ltime.tm_sec = ltime.tm_min = ltime.tm_hour = + ltime.tm_mday = ltime.tm_mon = ltime.tm_year = 0; + running = false; + } else { + ltime = *pltime; + ltime.tm_year += 1900; + ltime.tm_mon++; /* 1-origin */ + running = true; + } + if ((code = param_write_int(plist, "Year", <ime.tm_year)) < 0 || + (code = param_write_int(plist, "Month", <ime.tm_mon)) < 0 || + (code = param_write_int(plist, "Day", <ime.tm_mday)) < 0 || + (code = param_write_int(plist, "Weekday", <ime.tm_wday)) < 0 || + (code = param_write_int(plist, "Hour", <ime.tm_hour)) < 0 || + (code = param_write_int(plist, "Minute", <ime.tm_min)) < 0 || + (code = param_write_int(plist, "Second", <ime.tm_sec)) < 0 + ) + return code; + return param_write_bool(plist, "Running", &running); } |