logswan

Fast Web log analyzer using probabilistic data structures
Log | Files | Refs | README | LICENSE

continents.c (506B)


      1 /*
      2  * Logswan 2.1.13
      3  * Copyright (c) 2015-2022, Frederic Cambus
      4  * https://www.logswan.org
      5  *
      6  * Created:      2015-05-31
      7  * Last Updated: 2021-02-15
      8  *
      9  * Logswan is released under the BSD 2-Clause license.
     10  * See LICENSE file for details.
     11  *
     12  * SPDX-License-Identifier: BSD-2-Clause
     13  */
     14 
     15 const char *continents_id[] = {
     16 	"AF",
     17 	"AN",
     18 	"AS",
     19 	"EU",
     20 	"NA",
     21 	"OC",
     22 	"SA"
     23 };
     24 
     25 const char *continents_names[] = {
     26 	"Africa",
     27 	"Antarctica",
     28 	"Asia",
     29 	"Europe",
     30 	"North America",
     31 	"Oceania",
     32 	"South America"
     33 };