diff options
Diffstat (limited to 'libhb/hb_dict.h')
-rw-r--r-- | libhb/hb_dict.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libhb/hb_dict.h b/libhb/hb_dict.h index 46be946ce..8642d007b 100644 --- a/libhb/hb_dict.h +++ b/libhb/hb_dict.h @@ -22,10 +22,10 @@ typedef struct hb_dict_s hb_dict_t; hb_dict_t * hb_dict_init( int alloc ); void hb_dict_free( hb_dict_t ** dict_ptr ); -void hb_dict_set( hb_dict_t ** dict_ptr, const char * key, const char * value ); +void hb_dict_set( hb_dict_t ** dict_ptr, const char * key, const char * value ); -hb_dict_entry_t * hb_dict_get( hb_dict_t * dict, const char * key ); -hb_dict_entry_t * hb_dict_next( hb_dict_t * dict, hb_dict_entry_t * previous ); +hb_dict_entry_t * hb_dict_get( hb_dict_t * dict, const char * key ); +hb_dict_entry_t * hb_dict_next( hb_dict_t * dict, hb_dict_entry_t * previous ); hb_dict_t * hb_encopts_to_dict( const char * encopts, int encoder ); |