ESAPI-C 1.0
The OWASP Enterprise Security API for C
|
A UNIX Command Shell Codec module implementation. More...
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include "codec.h"
#include "unix_codec.h"
Go to the source code of this file.
Functions | |
char * | encode_unix_char (char *tokenbuff, char ch) |
char | decode_unix_char (const char *input, int *index, char *pushback) |
Variables | |
char * | unix_codec_name = "Unix" |
const char | digits [] |
All possible chars for representing a number as a String. |
A UNIX Command Shell Codec module implementation.
Definition in file unix_codec.c.
const char digits[] |
{ '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z' }
All possible chars for representing a number as a String.
Definition at line 21 of file unix_codec.c.