2010-08-17 05:33:07 +04:00
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2010-04-15 05:11:11 +04:00
2012-07-18 21:07:51 +04:00
# pragma once
2010-04-15 05:11:11 +04:00
/***
This file is part of systemd .
Copyright 2010 Lennart Poettering
systemd is free software ; you can redistribute it and / or modify it
2012-04-12 02:20:58 +04:00
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation ; either version 2.1 of the License , or
2010-04-15 05:11:11 +04:00
( at your option ) any later version .
systemd is distributed in the hope that it will be useful , but
WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
2012-04-12 02:20:58 +04:00
Lesser General Public License for more details .
2010-04-15 05:11:11 +04:00
2012-04-12 02:20:58 +04:00
You should have received a copy of the GNU Lesser General Public License
2010-04-15 05:11:11 +04:00
along with systemd ; If not , see < http : //www.gnu.org/licenses/>.
* * */
2013-09-17 19:03:46 +04:00
typedef int ( * SpecifierCallback ) ( char specifier , void * data , void * userdata , char * * ret ) ;
2010-04-15 05:11:11 +04:00
typedef struct Specifier {
const char specifier ;
const SpecifierCallback lookup ;
void * data ;
} Specifier ;
2013-09-17 19:03:46 +04:00
int specifier_printf ( const char * text , const Specifier table [ ] , void * userdata , char * * ret ) ;
2010-04-15 05:11:11 +04:00
2013-09-17 19:03:46 +04:00
int specifier_string ( char specifier , void * data , void * userdata , char * * ret ) ;
2013-01-28 04:44:52 +04:00
2013-09-17 19:03:46 +04:00
int specifier_machine_id ( char specifier , void * data , void * userdata , char * * ret ) ;
int specifier_boot_id ( char specifier , void * data , void * userdata , char * * ret ) ;
int specifier_host_name ( char specifier , void * data , void * userdata , char * * ret ) ;
int specifier_kernel_release ( char specifier , void * data , void * userdata , char * * ret ) ;