GRASS Programmer's Manual
6.4.3(2013)-r
Main Page
Related Pages
Namespaces
Data Structures
Files
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Macros
Pages
done_msg.c
Go to the documentation of this file.
1
17
#include <stdarg.h>
18
19
#include <grass/gis.h>
20
#include <grass/glocale.h>
21
29
int
G_done_msg
(
const
char
*
msg
, ...)
30
{
31
char
buffer[2000];
32
va_list ap;
33
34
va_start(ap, msg);
35
vsprintf(buffer, msg, ap);
36
va_end(ap);
37
38
G_message
(_(
"%s complete. %s"
),
G_program_name
(), buffer);
39
40
return
0;
41
}
lib
gis
done_msg.c
Generated on Thu Sep 26 2013 09:48:00 for GRASS Programmer's Manual by
1.8.4