From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Schantl To: development@lists.ipfire.org Subject: [PATCH] perl: Add function to get the description of the database. Date: Sun, 29 Sep 2019 11:55:12 +0200 Message-ID: <20190929095512.10655-1-stefan.schantl@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1878533823635258531==" List-Id: --===============1878533823635258531== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Signed-off-by: Stefan Schantl --- 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.20.1 --===============1878533823635258531==--