home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gettext-0.10.24-src.tgz / tar.out / fsf / gettext / src / po-lex.h < prev    next >
C/C++ Source or Header  |  1996-09-28  |  2KB  |  72 lines

  1. /* GNU gettext - internationalization aids
  2.    Copyright (C) 1995, 1996 Free Software Foundation, Inc.
  3.  
  4.    This file was written by Peter Miller <pmiller@agso.gov.au>
  5.  
  6. This program is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  19.  
  20. #ifndef _PO_LEX_H
  21. #define _PO_LEX_H
  22.  
  23. #include <sys/types.h>
  24. #include "error.h"
  25.  
  26. typedef struct lex_pos_ty lex_pos_ty;
  27. struct lex_pos_ty
  28. {
  29.   char *file_name;
  30.   size_t line_number;
  31. };
  32.  
  33.  
  34. /* Global variables from po-lex.c.  */
  35. extern lex_pos_ty gram_pos;
  36. extern size_t gram_max_allowed_errors;
  37.  
  38.  
  39. void lex_open PARAMS ((const char *__fname));
  40. void lex_close PARAMS ((void));
  41. int po_gram_lex PARAMS ((void));
  42. void po_gram_error PARAMS ((const char *__fmt, ...));
  43. void gram_error_at_line PARAMS ((const lex_pos_ty *__pos, const char *__fmt,
  44.                  ...));
  45. void po_lex_pass_comments PARAMS ((int __flag));
  46. void po_lex_pass_obsolete_entries PARAMS ((int __flag));
  47.  
  48.  
  49. /* GCC is smart enough to allow optimizations like this.  */
  50. #if __STDC__ && defined __GNUC__ && __GNUC__ >= 2
  51.  
  52. # define po_gram_error(fmt, args...)                        \
  53.   do {                                        \
  54.     error_at_line (0, 0, gram_pos.file_name, gram_pos.line_number,        \
  55.             fmt, ## args);                        \
  56.     if (error_message_count >= gram_max_allowed_errors)                \
  57.       error (1, 0, _("too many errors, aborting"));                \
  58.   } while (0)
  59.  
  60.  
  61. # define gram_error_at_line(pos, fmt, args...)                    \
  62.   do {                                        \
  63.     error_at_line (0, 0, (pos)->file_name, (pos)->line_number,            \
  64.             fmt, ## args);                        \
  65.     if (error_message_count >= gram_max_allowed_errors)                \
  66.       error (1, 0, _("too many errors, aborting"));                \
  67.   } while (0)
  68. #endif
  69.  
  70.  
  71. #endif
  72.