tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

hunspell_csutil.hxx (4160B)


      1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
      2 /* ***** BEGIN LICENSE BLOCK *****
      3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
      4 *
      5 * Copyright (C) 2002-2017 Németh László
      6 *
      7 * The contents of this file are subject to the Mozilla Public License Version
      8 * 1.1 (the "License"); you may not use this file except in compliance with
      9 * the License. You may obtain a copy of the License at
     10 * http://www.mozilla.org/MPL/
     11 *
     12 * Software distributed under the License is distributed on an "AS IS" basis,
     13 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
     14 * for the specific language governing rights and limitations under the
     15 * License.
     16 *
     17 * Hunspell is based on MySpell which is Copyright (C) 2002 Kevin Hendricks.
     18 *
     19 * Contributor(s): David Einstein, Davide Prina, Giuseppe Modugno,
     20 * Gianluca Turconi, Simon Brouwer, Noll János, Bíró Árpád,
     21 * Goldman Eleonóra, Sarlós Tamás, Bencsáth Boldizsár, Halácsy Péter,
     22 * Dvornik László, Gefferth András, Nagy Viktor, Varga Dániel, Chris Halls,
     23 * Rene Engelhard, Bram Moolenaar, Dafydd Jones, Harri Pitkänen
     24 *
     25 * Alternatively, the contents of this file may be used under the terms of
     26 * either the GNU General Public License Version 2 or later (the "GPL"), or
     27 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
     28 * in which case the provisions of the GPL or the LGPL are applicable instead
     29 * of those above. If you wish to allow use of your version of this file only
     30 * under the terms of either the GPL or the LGPL, and not to allow others to
     31 * use your version of this file under the terms of the MPL, indicate your
     32 * decision by deleting the provisions above and replace them with the notice
     33 * and other provisions required by the GPL or the LGPL. If you do not delete
     34 * the provisions above, a recipient may use your version of this file under
     35 * the terms of any one of the MPL, the GPL or the LGPL.
     36 *
     37 * ***** END LICENSE BLOCK ***** */
     38 /*
     39 * Copyright 2002 Kevin B. Hendricks, Stratford, Ontario, Canada
     40 * And Contributors.  All rights reserved.
     41 *
     42 * Redistribution and use in source and binary forms, with or without
     43 * modification, are permitted provided that the following conditions
     44 * are met:
     45 *
     46 * 1. Redistributions of source code must retain the above copyright
     47 *    notice, this list of conditions and the following disclaimer.
     48 *
     49 * 2. Redistributions in binary form must reproduce the above copyright
     50 *    notice, this list of conditions and the following disclaimer in the
     51 *    documentation and/or other materials provided with the distribution.
     52 *
     53 * 3. All modifications to the source code must be clearly marked as
     54 *    such.  Binary redistributions based on modified source code
     55 *    must be clearly marked as modified versions in the documentation
     56 *    and/or other materials provided with the distribution.
     57 *
     58 * THIS SOFTWARE IS PROVIDED BY KEVIN B. HENDRICKS AND CONTRIBUTORS
     59 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     60 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
     61 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL
     62 * KEVIN B. HENDRICKS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
     63 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
     64 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     65 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     66 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     67 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     68 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     69 * SUCH DAMAGE.
     70 */
     71 #ifndef EXTENSIONS_SPELLCHECK_HUNSPELL_GLUE_HUNSPELL_CSUTIL_H_
     72 #define EXTENSIONS_SPELLCHECK_HUNSPELL_GLUE_HUNSPELL_CSUTIL_H_
     73 
     74 /* We need get_current_cs from hunspell's csutil to live outside the RLBox
     75 * sandbox (since it relies on a Gecko encoding bits) and then expose it to the
     76 * sandboxed hunspell.
     77 */
     78 
     79 struct cs_info {
     80  unsigned char ccase;
     81  unsigned char clower;
     82  unsigned char cupper;
     83 };
     84 
     85 struct cs_info* hunspell_get_current_cs(const std::string& es);
     86 
     87 #endif