From 05785c11dfdeaf11d98e7d65486a3870d00b5206 Mon Sep 17 00:00:00 2001 From: hunt Date: Wed, 29 Jun 2005 19:53:05 +0000 Subject: 2005-06-29 Martin Hunt * map-values.c (_stp_map_add_int64): Fix docs. * map-str.c: Fix some docs * map.c: Ditto. * map.doc: Ditto. --- runtime/map.doc | 23 ----------------------- 1 file changed, 23 deletions(-) (limited to 'runtime/map.doc') diff --git a/runtime/map.doc b/runtime/map.doc index 6a1585b7..29d740f6 100644 --- a/runtime/map.doc +++ b/runtime/map.doc @@ -108,17 +108,6 @@ MAP _stp_map_new_KEY1__ (int num_entries, HSTAT_LINEAR, int start, int stop, int */ void _stp_map_set_str (MAP map, char *val) {} -/** Set the current element's value to a String. - * This sets the current element's value to a String. The map must have been created - * to hold strings using _stp_map_new_(xxx, STRING) - * - * If the element doesn't exist, it is created. If no current element (key) - * is set for the map, this function does nothing. - * @param map - * @param str String containing new value. - * @sa _stp_map_set() - */ -void _stp_map_set_string (MAP map, String str){} /** Appends a C string to the current element's value * This appends a C string to the current element's value. The map must have been created @@ -131,18 +120,6 @@ void _stp_map_set_string (MAP map, String str){} * @sa _stp_map_set() */ void _stp_map_add_str (MAP map, char *val) {} - -/** Adds an int64 to the current element's value. - * This adds an int64 to the current element's value. The map must have been created - * to hold int64s using _stp_map_new_(xxx, INT64) - * - * If the element doesn't exist, it is created. If no current element (key) - * is set for the map, this function does nothing. - * @param map - * @param val value - * @sa _stp_map_set_int64() - */ -void _stp_map_add_int64 (MAP map, int64_t val) {} /** @} end of map_set group*/ /** @defgroup map_get Getting the Values from Maps -- cgit