Changed from Atom to AtomEntry and atom_ to atom_entry_
[cascardo/atompub.git] / include / atompub / entry.h
index dd2cf05..a8eadb2 100644 (file)
 
 #include <sys/types.h>
 
-typedef struct _atom_entry Atom;
+typedef struct _atom_entry AtomEntry;
 
-Atom * atom_new_data_len (char *, size_t);
-void atom_delete (Atom *);
-char * atom_string (Atom *);
-size_t atom_len (Atom *);
+AtomEntry * atom_entry_new_with_prefix (char *);
+AtomEntry * atom_entry_new (void);
+AtomEntry * atom_entry_new_data_len (char *, size_t);
+void atom_entry_delete (AtomEntry *);
+char * atom_entry_string (AtomEntry *);
+size_t atom_entry_len (AtomEntry *);
 
 #endif