Skip to content
Snippets Groups Projects
Select Git revision
  • 7ee0230d0d5ba4fb2df8cf75a543e703654eedc3
  • master default protected
  • siv-mode
  • delete-des-compat
  • delete-rsa_blind
  • aes-struct-layout
  • master-updates
  • release-3.4-fixes
  • struct-layout
  • attribute-deprecated
  • rename-data-symbols
  • x86_64-sha_ni-sha256
  • ecc-params-tweak
  • delete-old-aes
  • cmac-support
  • x86_64-sha_ni-sha1
  • gcm-ctr-opt
  • ctr-opt
  • skein
  • api-opaque-fix
  • curve448
  • 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
  • converted-master-branch-to-git
  • nettle_2.4_release_20110903
  • nettle_2.3_release_20110902
41 results

bignum.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 */