]> Pileus Git - ~andy/gtk/blob - glib/gprimes.c
6a38b399d4539beb6a23971fdcf8ef98ab074123
[~andy/gtk] / glib / gprimes.c
1 /* GLIB - Library of useful routines for C programming
2  * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19 #include "glib.h"
20
21
22 gint g_primes[] =
23 {
24   11,
25   15,
26   23,
27   35,
28   49,
29   73,
30   109,
31   163,
32   251,
33   367,
34   557,
35   823,
36   1237,
37   1861,
38   2777,
39   4177,
40   6247,
41   9371,
42   14057,
43   21089,
44   31627,
45   47431,
46   71143,
47   106721,
48   160073,
49   240101,
50   360163,
51   540217,
52   810343,
53   1215497,
54   1823231,
55   2734867,
56   4102283,
57   6153409,
58   9230113,
59   13845163,
60 };
61
62 gint g_nprimes = sizeof (g_primes) / sizeof (g_primes[0]);