Visualization Library 2.0.0-b5
A lightweight C++ OpenGL middleware for 2D/3D graphics
|
[Download] [Tutorials] [All Classes] [Grouped Classes] |
#include <stdio.h>
#include <ctype.h>
#include <string.h>
Go to the source code of this file.
Macros | |
#define | is_ascii(c) 1 |
#define | is_space(c) (is_ascii(c) && isspace(c)) |
#define | is_alpha(c) (is_ascii(c) && isalpha(c)) |
#define | is_alnum(c) (is_ascii(c) && isalnum(c)) |
#define | isidchar(ch) (is_alnum(ch) || (ch) == '_') |
#define | isidfirstchar(ch) (is_alpha(ch) || (ch) == '_') |
#define | bufsize 5000 /* arbitrary size */ |
Functions | |
char * | malloc () |
int | free () |
char * | skipspace () |
int | writeblanks () |
int | test1 () |
int | convert1 () |
int | main (int argc, argv) |
char * | skipspace (char *p, int dir) |
int | writeblanks (char *start, char *end) |
int | test1 (char *buf) |
int | convert1 (char *buf, FILE *out, int header, int convert_varargs) |
Definition at line 7468 of file khronos_glext.h.
#define is_ascii | ( | c | ) | 1 |
Definition at line 299 of file ansi2knr.c.
Definition at line 304 of file ansi2knr.c.
Referenced by skipspace().
#define isidchar | ( | ch | ) | (is_alnum(ch) || (ch) == '_') |
Definition at line 309 of file ansi2knr.c.
Referenced by convert1(), and test1().
#define isidfirstchar | ( | ch | ) | (is_alpha(ch) || (ch) == '_') |
Definition at line 310 of file ansi2knr.c.
Referenced by convert1(), and test1().
Definition at line 528 of file ansi2knr.c.
References free(), isidchar, isidfirstchar, malloc(), NULL, out(), skipspace(), and writeblanks().
int free | ( | ) |
Referenced by _TIFFfree(), bclose(), BuildPngList(), cleanup(), convert1(), DisplayImage(), do_extract_currentfile(), FillBitmap(), free_index(), ft_free(), vl::glcheck(), gz_error(), gz_init(), gz_look(), gz_open(), gzclose_r(), gzclose_w(), gzcopy(), gzdopen(), gzlog_close(), gzlog_compress(), gzlog_open(), gztack(), inf(), jpeg_free_large(), jpeg_free_small(), load(), LoadImageFile(), vl::loadMD2(), log_recover(), log_replace(), main(), makedir(), MD5_Final(), MD5_Update(), mem_alloc(), mem_done(), mem_free(), readpng_cleanup(), restore_attr(), try(), unzRepair(), win32_close_file_func(), zcfree(), zipCloseFileInZipRaw64(), and zmemzero().
Definition at line 320 of file ansi2knr.c.
References convert1(), free(), malloc(), NULL, out(), skipspace(), and test1().
char* malloc | ( | ) |
Referenced by _TIFFmalloc(), bopen(), BuildPngList(), convert1(), DisplayImage(), do_extract_currentfile(), FillBitmap(), ft_alloc(), FT_New_Memory(), vl::glcheck(), gz_error(), gz_init(), gz_look(), gz_open(), gzcopy(), gzdopen(), gzlog_compress(), gzlog_open(), gztack(), h2b(), inf(), jpeg_get_large(), jpeg_get_small(), load(), vl::loadMD2(), log_recover(), log_replace(), main(), makedir(), mem_alloc(), mem_setup(), push_attr(), ReadFileMemory(), TIFFOpen(), try(), unzRepair(), zcalloc(), and zmemzero().
char* skipspace | ( | ) |
Referenced by convert1(), main(), and test1().
char* skipspace | ( | char * | p, |
int | dir | ||
) |
Definition at line 428 of file ansi2knr.c.
References is_space.
int test1 | ( | char * | buf | ) |
Definition at line 476 of file ansi2knr.c.
References isidchar, isidfirstchar, and skipspace().
int writeblanks | ( | ) |
Referenced by convert1().
int writeblanks | ( | char * | start, |
char * | end | ||
) |
Definition at line 452 of file ansi2knr.c.
Visualization Library 2.0.0-b5 Reference Documentation
Updated on Mon Feb 10 2020 02:44:56.
© Copyright Michele Bosi. All rights reserved.