#include "base_string.h"
#include "byte_array.h"
#include "contracts.h"
#include <stdarg.h>
Go to the source code of this file.
|
| | basis |
| | The guards collection helps in testing preconditions and reporting errors.
|
| |
|
| bool | basis::astring_comparator (const astring &a, const astring &b) |
| | implements a string comparator that just does simple astring ==. More...
|
| |
| void | basis::attach (byte_array &packed_form, const char *to_attach) |
| | Packs a character string "to_attach" into "packed_form". More...
|
| |
| bool | basis::detach (byte_array &packed_form, astring &to_detach) |
| | Unpacks a character string "to_attach" from "packed_form". More...
|
| |