From 973c5f03e64d71ce74c4d007e65c17985e3c8974 Mon Sep 17 00:00:00 2001 From: Stefan Schantl Date: Sun, 29 Sep 2019 11:55:12 +0200 Subject: [PATCH] perl: Add function to get the description of the database. Signed-off-by: Stefan Schantl Signed-off-by: Michael Tremer --- src/perl/Location/Location.xs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/perl/Location/Location.xs b/src/perl/Location/Location.xs index f94ca31..496fc43 100644 --- a/src/perl/Location/Location.xs +++ b/src/perl/Location/Location.xs @@ -69,6 +69,16 @@ get_vendor(db) OUTPUT: RETVAL +const char* +get_description(db) + struct loc_database* db; + + CODE: + // Get database description + RETVAL = loc_database_get_description(db); + OUTPUT: + RETVAL + # # Lookup functions # -- 2.47.3