mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-05-17 11:11:58 +02:00
Point to g_hash_table_lookup_extended() for differentiation between
Sun Aug 29 23:58:38 2004 Matthias Clasen <maclas@gmx.de> * glib/ghash.c (g_hash_table_lookup): Point to g_hash_table_lookup_extended() for differentiation between not-found and value-is-NULL. (#150960, Morten Welinder)
This commit is contained in:
parent
f04024e32d
commit
fd92ac8f52
@ -1,3 +1,9 @@
|
|||||||
|
Sun Aug 29 23:58:38 2004 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
|
* glib/ghash.c (g_hash_table_lookup): Point to
|
||||||
|
g_hash_table_lookup_extended() for differentiation between
|
||||||
|
not-found and value-is-NULL. (#150960, Morten Welinder)
|
||||||
|
|
||||||
2004-08-27 Matthias Clasen <mclasen@redhat.com>
|
2004-08-27 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
Fix #151193, Stepan Kasal:
|
Fix #151193, Stepan Kasal:
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
Sun Aug 29 23:58:38 2004 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
|
* glib/ghash.c (g_hash_table_lookup): Point to
|
||||||
|
g_hash_table_lookup_extended() for differentiation between
|
||||||
|
not-found and value-is-NULL. (#150960, Morten Welinder)
|
||||||
|
|
||||||
2004-08-27 Matthias Clasen <mclasen@redhat.com>
|
2004-08-27 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
Fix #151193, Stepan Kasal:
|
Fix #151193, Stepan Kasal:
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
Sun Aug 29 23:58:38 2004 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
|
* glib/ghash.c (g_hash_table_lookup): Point to
|
||||||
|
g_hash_table_lookup_extended() for differentiation between
|
||||||
|
not-found and value-is-NULL. (#150960, Morten Welinder)
|
||||||
|
|
||||||
2004-08-27 Matthias Clasen <mclasen@redhat.com>
|
2004-08-27 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
Fix #151193, Stepan Kasal:
|
Fix #151193, Stepan Kasal:
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
Sun Aug 29 23:58:38 2004 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
|
* glib/ghash.c (g_hash_table_lookup): Point to
|
||||||
|
g_hash_table_lookup_extended() for differentiation between
|
||||||
|
not-found and value-is-NULL. (#150960, Morten Welinder)
|
||||||
|
|
||||||
2004-08-27 Matthias Clasen <mclasen@redhat.com>
|
2004-08-27 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
Fix #151193, Stepan Kasal:
|
Fix #151193, Stepan Kasal:
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
Sun Aug 29 23:58:38 2004 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
|
* glib/ghash.c (g_hash_table_lookup): Point to
|
||||||
|
g_hash_table_lookup_extended() for differentiation between
|
||||||
|
not-found and value-is-NULL. (#150960, Morten Welinder)
|
||||||
|
|
||||||
2004-08-27 Matthias Clasen <mclasen@redhat.com>
|
2004-08-27 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
Fix #151193, Stepan Kasal:
|
Fix #151193, Stepan Kasal:
|
||||||
|
@ -212,7 +212,10 @@ g_hash_table_lookup_node (GHashTable *hash_table,
|
|||||||
* @hash_table: a #GHashTable.
|
* @hash_table: a #GHashTable.
|
||||||
* @key: the key to look up.
|
* @key: the key to look up.
|
||||||
*
|
*
|
||||||
* Looks up a key in a #GHashTable.
|
* Looks up a key in a #GHashTable. Note that this function cannot
|
||||||
|
* distinguish between a key that is not present and one which is present
|
||||||
|
* and has the value %NULL. If you need this distinction, use
|
||||||
|
* g_hash_table_lookup_extended().
|
||||||
*
|
*
|
||||||
* Return value: the associated value, or %NULL if the key is not found.
|
* Return value: the associated value, or %NULL if the key is not found.
|
||||||
**/
|
**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user