2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 13:02:11 +00:00
Files
build/v2/engine/object.h

25 lines
556 B
C

/*
* Copyright 2011 Steven Watanabe
*
* This file is part of Jam - see jam.c for Copyright information.
*/
/*
* object.h - object manipulation routines
*/
#ifndef BOOST_JAM_OBJECT_H
#define BOOST_JAM_OBJECT_H
typedef struct _object OBJECT;
OBJECT * object_new ( const char * );
OBJECT * object_copy ( OBJECT * );
void object_free ( OBJECT * );
const char * object_str ( OBJECT * );
void object_done ( void );
int object_equal ( OBJECT *, OBJECT * );
unsigned int object_hash ( OBJECT * );
#endif