#include <stdio.h>#include <ctype.h>#include <string.h>
Defines | |
| #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 |
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) |
| #define bufsize 5000 |
| #define is_ascii | ( | c | ) | 1 |
| #define isidchar | ( | ch | ) | (is_alnum(ch) || (ch) == '_') |
| #define isidfirstchar | ( | ch | ) | (is_alpha(ch) || (ch) == '_') |
| int convert1 | ( | ) |

| int convert1 | ( | char * | buf, | |
| FILE * | out, | |||
| int | header, | |||
| int | convert_varargs | |||
| ) |

| int free | ( | ) |

| int main | ( | int | argc, | |
| argv | ||||
| ) |

| char* malloc | ( | ) |

| char* skipspace | ( | char * | p, | |
| int | dir | |||
| ) |
| char* skipspace | ( | ) |

| int test1 | ( | ) |

| int test1 | ( | char * | buf | ) |

| int writeblanks | ( | char * | start, | |
| char * | end | |||
| ) |
| int writeblanks | ( | ) |

1.7.1