1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #ifndef __G_PRIMES_H__
- #define __G_PRIMES_H__
- #if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
- #error "Only <glib.h> can be included directly."
- #endif
- #include <glib/gtypes.h>
- G_BEGIN_DECLS
- GLIB_AVAILABLE_IN_ALL
- guint g_spaced_primes_closest (guint num) G_GNUC_CONST;
- G_END_DECLS
- #endif
|