home *** CD-ROM | disk | FTP | other *** search
/ ftp.uv.es / 2014.11.ftp.uv.es.tar / ftp.uv.es / pub / unix / elm-2.4-pl20.tar.Z / elm-2.4-pl20.tar / nls / gencat / dumpmsg.c < prev    next >
C/C++ Source or Header  |  1991-10-01  |  2KB  |  94 lines

  1.  
  2. /***********************************************************
  3. Copyright 1990, by Alfalfa Software Incorporated, Cambridge, Massachusetts.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its
  8. documentation for any purpose and without fee is hereby granted,
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in
  11. supporting documentation, and that Alfalfa's name not be used in
  12. advertising or publicity pertaining to distribution of the software
  13. without specific, written prior permission.
  14.  
  15. ALPHALPHA DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  16. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  17. ALPHALPHA BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  18. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  19. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  20. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  21. SOFTWARE.
  22.  
  23. If you make any modifications, bugfixes or other changes to this software
  24. we'd appreciate it if you could send a copy to us so we can keep things
  25. up-to-date.  Many thanks.
  26.                 Kee Hinckley
  27.                 Alfalfa Software, Inc.
  28.                 267 Allston St., #3
  29.                 Cambridge, MA 02139  USA
  30.                 nazgul@alfalfa.com
  31.     
  32. ******************************************************************/
  33.  
  34. /* Edit History
  35.  
  36. 10/01/91   1 larryp    created
  37. */
  38.  
  39. #include <stdio.h>
  40. #include <sys/types.h>
  41. #ifdef SYSV
  42. #include <sys/fcntl.h>
  43. #define L_SET SEEK_SET
  44. #define L_INCR SEEK_CUR
  45. #endif
  46. #include <sys/file.h>
  47. #include <sys/stat.h>
  48. #include "gencat.h"
  49.  
  50. /*
  51.  * dump a binary message catalog so we can see what's in it.
  52.  */
  53.  
  54.  
  55. void usage() {
  56.     fprintf(stderr, "Use: dumpmsg catfile msgfile\n");
  57. }
  58.  
  59. void main(
  60. #if defined(__STDC__) || defined(__cplusplus)
  61.         int argc, char *argv[])
  62. #else
  63.         argc, argv)
  64. int argc;
  65. char *argv[];
  66. #endif
  67. {
  68.     int        ifd, i;
  69.     FILE    *ofp;
  70.     
  71.     if (argc != 3) {
  72.     usage();
  73.     exit(1);
  74.     }
  75.  
  76.     if ((ifd = open(argv[1], O_RDONLY)) < 0) {
  77.     perror(argv[1]);
  78.     exit(2);
  79.     }
  80.  
  81.     if (!strcmp(argv[2], "-")) {
  82.     ofp = stdout;
  83.     } else {
  84.     if ((ofp = fopen(argv[2], "w")) == NULL) {
  85.         perror(argv[2]);
  86.         exit(3);
  87.     }
  88.     }
  89.  
  90.     MCReadCat(ifd);
  91.  
  92.     MCDumpcat(ofp);
  93. }
  94.