mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-21 02:39:31 -06:00
16 lines
326 B
C
16 lines
326 B
C
#ifndef PGF_LITERALS_H_
|
|
#define PGF_LITERALS_H_
|
|
|
|
#include <pgf/data.h>
|
|
|
|
PgfCallbacksMap*
|
|
pgf_new_callbacks_map(PgfConcr* concr, GuPool *pool);
|
|
|
|
// literal for named entities recognition
|
|
extern PgfLiteralCallback pgf_nerc_literal_callback;
|
|
|
|
PgfCCat*
|
|
pgf_literal_cat(PgfConcr* concr, PgfLiteral lit);
|
|
|
|
#endif // PGF_LITERALS_H_
|