X-Git-Url: http://git.cascardo.eti.br/?a=blobdiff_plain;f=include%2Fatompub%2Fentry.h;h=a8eadb2fd346c8cf5726d82735ee2f86f5a0e2ff;hb=0553ef19601df3a70c770addc02fda47bb5734f6;hp=dd2cf059cb40682917feaf231fefdbb113e00419;hpb=98b34debbadc6b126a2c3bb817c0d72770e55e89;p=cascardo%2Fatompub.git diff --git a/include/atompub/entry.h b/include/atompub/entry.h index dd2cf05..a8eadb2 100644 --- a/include/atompub/entry.h +++ b/include/atompub/entry.h @@ -22,11 +22,13 @@ #include -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