GRASS Programmer's Manual  6.5.svn(2014)-r66266
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
snprintf.c File Reference

GIS Library - snprintf() clone functions. More...

#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <unistd.h>
#include <assert.h>
#include <grass/gis.h>
Include dependency graph for snprintf.c:

Go to the source code of this file.

Functions

int G_snprintf (char *str, size_t size, const char *fmt,...)
 snprintf() clone. More...
 

Detailed Description

GIS Library - snprintf() clone functions.

Todo:
if needed, implement alternative versions for portability. potential code source:

(C) 2001-2008 by the GRASS Development Team

This program is free software under the GNU General Public License (>=v2). Read the file COPYING that comes with GRASS for details.

Author
Markus Neteler
Date
2006-2008

Definition in file snprintf.c.

Function Documentation

int G_snprintf ( char *  str,
size_t  size,
const char *  fmt,
  ... 
)

snprintf() clone.

Note: The use of snprintf()/G_snprintf() is discouraged in favour of calculating how long the string will be and allocating enough memory!

Parameters
[in]strinput string
[in]sizelength of string
[in]fmt
Returns
numer of chars written

Definition at line 45 of file snprintf.c.

References count.

Referenced by clean_dir().