#include <string.h>
#include <pthread.h>
#include "properties.h"
#include "utils/list.h"
Functions | |
int | update_property_value_data (prop_val_t *prop_value, void *new_data) |
bool | is_prop_values_equal (prop_val_t *a, prop_val_t *b) |
Checks equality of given properties values. | |
bool | is_prop_names_equal (prop_val_t *a, prop_val_t *b) |
Checks equality of properties names of given properties values. |
Alaxandr A. Lomov <lomov@cs.karelia.ru>
PetrSU KP library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with PetrSU KP library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
bool is_prop_names_equal | ( | prop_val_t * | a, | |
prop_val_t * | b | |||
) |
Checks equality of properties names of given properties values.
a | one property value. | |
b | another property value. |
bool is_prop_values_equal | ( | prop_val_t * | a, | |
prop_val_t * | b | |||
) |
Checks equality of given properties values.
a | one property value. | |
b | another property value. |
int update_property_value_data | ( | prop_val_t * | prop_value, | |
void * | new_data | |||
) |