Skip to content
Snippets Groups Projects
Select Git revision
  • 18eaed2fc539e3bfc5ee3f718de79a10eda67ed3
  • master default protected
  • streebog
  • gost28147
  • master-updates
  • ed448
  • shake256
  • curve448
  • ecc-sqrt
  • gosthash94cp
  • cmac64
  • block16-refactor
  • siv-mode
  • cmac-layout
  • delete-des-compat
  • delete-rsa_blind
  • aes-struct-layout
  • release-3.4-fixes
  • struct-layout
  • attribute-deprecated
  • rename-data-symbols
  • nettle_3.5.1_release_20190627
  • nettle_3.5_release_20190626
  • nettle_3.5rc1
  • nettle_3.4.1_release_20181204
  • nettle_3.4.1rc1
  • nettle_3.4_release_20171119
  • nettle_3.4rc2
  • nettle_3.4rc1
  • nettle_3.3_release_20161001
  • nettle_3.2_release_20160128
  • nettle_3.1.1_release_20150424
  • nettle_3.1_release_20150407
  • nettle_3.1rc3
  • nettle_3.1rc2
  • nettle_3.1rc1
  • nettle_3.0_release_20140607
  • nettle_2.7.1_release_20130528
  • nettle_2.7_release_20130424
  • nettle_2.6_release_20130116
  • nettle_2.5_release_20120707
41 results

cast.c

Blame
  • Forked from Nettle / nettle
    Source project has a limited visibility.
    lex.h 1.05 KiB
    /*
    || This file is part of Pike. For copyright information see COPYRIGHT.
    || Pike is distributed under GPL, LGPL and MPL. See the file COPYING
    || for more information.
    || $Id: lex.h,v 1.37 2008/05/01 20:39:40 mast Exp $
    */
    
    #ifndef LEX_H
    #define LEX_H
    
    #include "program.h"
    
    #if !defined(INCLUDED_FROM_LANGUAGE_YACC) && !defined(TOK_ARROW)
    /* language.c duplicates the definitions in language.h.
     * language.h is usually not protected against multiple inclusion.
     */
    #include "language.h"
    #endif
    
    #define NEW_LEX
    
    struct lex
    {
      char *pos;
      char *end;
      INT32 current_line;
      INT32 pragmas;
      struct pike_string *current_file;
      int (*current_lexer)(struct lex *, YYSTYPE *);
    };
    
    /* Prototypes begin here */
    
    int parse_esc_seq0 (p_wchar0 *buf, unsigned *chr, ptrdiff_t *len);
    int parse_esc_seq1 (p_wchar1 *buf, unsigned *chr, ptrdiff_t *len);
    int parse_esc_seq2 (p_wchar2 *buf, unsigned *chr, ptrdiff_t *len);
    
    int yylex0(struct lex *, YYSTYPE *);
    int yylex1(struct lex *, YYSTYPE *);
    int yylex2(struct lex *, YYSTYPE *);
    
    /* Prototypes end here */
    
    #endif	/* !LEX_H */