Help for this page

Select Code to Download


  1. or download this
    $ cd JSON-Parse-0.40
    $ grep -r "warn_only" *
    ...
    json-common.c:    unsigned int warn_only : 1;
    json-entry-points.c:    parser_o.warn_only = 1;
    lib/JSON/Parse.pod:=head2 warn_only
    
  2. or download this
    void
    warn_only (parser, onoff)
    ...
        SV * onoff;
    CODE:
        parser->warn_only = SvTRUE (onoff) ? 1 : 0;