+Fri Sep 11 02:11:46 1998 Tim Janik <timj@gtk.org>
+
+ * glib.h: explicitely include the prototypes for inline functions
+ to cure gcc warnings for -Wmissing-prototypes.
+
Wed Sep 9 02:52:04 PDT 1998 Manish Singh <yosh@gimp.org>
* configure.in: added -posix check for NeXTStep
+Fri Sep 11 02:11:46 1998 Tim Janik <timj@gtk.org>
+
+ * glib.h: explicitely include the prototypes for inline functions
+ to cure gcc warnings for -Wmissing-prototypes.
+
Wed Sep 9 02:52:04 PDT 1998 Manish Singh <yosh@gimp.org>
* configure.in: added -posix check for NeXTStep
+Fri Sep 11 02:11:46 1998 Tim Janik <timj@gtk.org>
+
+ * glib.h: explicitely include the prototypes for inline functions
+ to cure gcc warnings for -Wmissing-prototypes.
+
Wed Sep 9 02:52:04 PDT 1998 Manish Singh <yosh@gimp.org>
* configure.in: added -posix check for NeXTStep
+Fri Sep 11 02:11:46 1998 Tim Janik <timj@gtk.org>
+
+ * glib.h: explicitely include the prototypes for inline functions
+ to cure gcc warnings for -Wmissing-prototypes.
+
Wed Sep 9 02:52:04 PDT 1998 Manish Singh <yosh@gimp.org>
* configure.in: added -posix check for NeXTStep
+Fri Sep 11 02:11:46 1998 Tim Janik <timj@gtk.org>
+
+ * glib.h: explicitely include the prototypes for inline functions
+ to cure gcc warnings for -Wmissing-prototypes.
+
Wed Sep 9 02:52:04 PDT 1998 Manish Singh <yosh@gimp.org>
* configure.in: added -posix check for NeXTStep
+Fri Sep 11 02:11:46 1998 Tim Janik <timj@gtk.org>
+
+ * glib.h: explicitely include the prototypes for inline functions
+ to cure gcc warnings for -Wmissing-prototypes.
+
Wed Sep 9 02:52:04 PDT 1998 Manish Singh <yosh@gimp.org>
* configure.in: added -posix check for NeXTStep
+Fri Sep 11 02:11:46 1998 Tim Janik <timj@gtk.org>
+
+ * glib.h: explicitely include the prototypes for inline functions
+ to cure gcc warnings for -Wmissing-prototypes.
+
Wed Sep 9 02:52:04 PDT 1998 Manish Singh <yosh@gimp.org>
* configure.in: added -posix check for NeXTStep
+Fri Sep 11 02:11:46 1998 Tim Janik <timj@gtk.org>
+
+ * glib.h: explicitely include the prototypes for inline functions
+ to cure gcc warnings for -Wmissing-prototypes.
+
Wed Sep 9 02:52:04 PDT 1998 Manish Singh <yosh@gimp.org>
* configure.in: added -posix check for NeXTStep
/* Bit tests
*/
+G_INLINE_FUNC gint g_bit_nth_lsf (guint32 mask,
+ gint nth_bit);
+#ifdef G_CAN_INLINE
G_INLINE_FUNC gint
g_bit_nth_lsf (guint32 mask,
gint nth_bit)
-#ifdef G_CAN_INLINE
{
do
{
while (nth_bit < 32);
return -1;
}
-#else
-;
-#endif
+#endif /* G_CAN_INLINE */
+
+G_INLINE_FUNC gint g_bit_nth_msf (guint32 mask,
+ gint nth_bit);
+#ifdef G_CAN_INLINE
G_INLINE_FUNC gint
g_bit_nth_msf (guint32 mask,
gint nth_bit)
-#ifdef G_CAN_INLINE
{
if (nth_bit < 0)
nth_bit = 33;
while (nth_bit > 0);
return -1;
}
-#else
-;
-#endif
+#endif /* G_CAN_INLINE */
+
+G_INLINE_FUNC guint g_bit_storage (guint number);
+#ifdef G_CAN_INLINE
G_INLINE_FUNC guint
g_bit_storage (guint number)
-#ifdef G_CAN_INLINE
{
register guint n_bits = 0;
do
{
n_bits++;
- number = number >> 1;
- } while (number);
+ number >>= 1;
+ }
+ while (number);
return n_bits;
}
-#else
-;
-#endif
+#endif /* G_CAN_INLINE */
/* String Chunks
/* Bit tests
*/
+G_INLINE_FUNC gint g_bit_nth_lsf (guint32 mask,
+ gint nth_bit);
+#ifdef G_CAN_INLINE
G_INLINE_FUNC gint
g_bit_nth_lsf (guint32 mask,
gint nth_bit)
-#ifdef G_CAN_INLINE
{
do
{
while (nth_bit < 32);
return -1;
}
-#else
-;
-#endif
+#endif /* G_CAN_INLINE */
+
+G_INLINE_FUNC gint g_bit_nth_msf (guint32 mask,
+ gint nth_bit);
+#ifdef G_CAN_INLINE
G_INLINE_FUNC gint
g_bit_nth_msf (guint32 mask,
gint nth_bit)
-#ifdef G_CAN_INLINE
{
if (nth_bit < 0)
nth_bit = 33;
while (nth_bit > 0);
return -1;
}
-#else
-;
-#endif
+#endif /* G_CAN_INLINE */
+
+G_INLINE_FUNC guint g_bit_storage (guint number);
+#ifdef G_CAN_INLINE
G_INLINE_FUNC guint
g_bit_storage (guint number)
-#ifdef G_CAN_INLINE
{
register guint n_bits = 0;
do
{
n_bits++;
- number = number >> 1;
- } while (number);
+ number >>= 1;
+ }
+ while (number);
return n_bits;
}
-#else
-;
-#endif
+#endif /* G_CAN_INLINE */
/* String Chunks