| gusimplewhiteboard
    | 
#include "wb_point2d.h"#include <stdio.h>#include <string.h>#include <stdlib.h>#include <ctype.h>#include <limits.h>Go to the source code of this file.
| Macros | |
| #define | htonll(x) bswap_64(x) | 
| #define | ntohll(x) bswap_64(x) | 
| #define | htonl(x) bswap_32(x) | 
| #define | ntohl(x) bswap_32(x) | 
| #define | htons(x) bswap_16(x) | 
| #define | ntohs(x) bswap_16(x) | 
| Functions | |
| const char * | wb_point2d_description (const struct wb_point2d *self, char *descString, size_t bufferSize) | 
| Convert to a description string.  More... | |
| const char * | wb_point2d_to_string (const struct wb_point2d *self, char *toString, size_t bufferSize) | 
| Convert to a string.  More... | |
| struct wb_point2d * | wb_point2d_from_string (struct wb_point2d *self, const char *str) | 
| Convert from a string.  More... | |
| size_t | wb_point2d_to_network_serialised (const struct wb_point2d *self, char *dst) | 
| Convert to a compressed, serialised, network byte order byte stream.  More... | |
| size_t | wb_point2d_from_network_serialised (const char *src, struct wb_point2d *dst) | 
| Convert from a compressed, serialised, network byte order byte stream.  More... | |
| #define htonl | ( | x | ) | bswap_32(x) | 
Definition at line 97 of file wb_point2d.c.
| #define htonll | ( | x | ) | bswap_64(x) | 
Definition at line 93 of file wb_point2d.c.
| #define htons | ( | x | ) | bswap_16(x) | 
Definition at line 101 of file wb_point2d.c.
| #define ntohl | ( | x | ) | bswap_32(x) | 
Definition at line 98 of file wb_point2d.c.
| #define ntohll | ( | x | ) | bswap_64(x) | 
Definition at line 94 of file wb_point2d.c.
| #define ntohs | ( | x | ) | bswap_16(x) | 
Definition at line 102 of file wb_point2d.c.
| const char * wb_point2d_description | ( | const struct wb_point2d * | self, | 
| char * | descString, | ||
| size_t | bufferSize | ||
| ) | 
Convert to a description string.
Definition at line 125 of file wb_point2d.c.
Referenced by guWhiteboard::Point2D::description(), and wb_particle_position_description().
| size_t wb_point2d_from_network_serialised | ( | const char * | src, | 
| struct wb_point2d * | dst | ||
| ) | 
Convert from a compressed, serialised, network byte order byte stream.
Network stream deserialisation.
Definition at line 315 of file wb_point2d.c.
References ntohs, wb_point2d::x, and wb_point2d::y.
| struct wb_point2d * wb_point2d_from_string | ( | struct wb_point2d * | self, | 
| const char * | str | ||
| ) | 
Convert from a string.
Definition at line 173 of file wb_point2d.c.
References POINT2D_DESC_BUFFER_SIZE.
Referenced by wb_particle_position_from_string().
| size_t wb_point2d_to_network_serialised | ( | const struct wb_point2d * | self, | 
| char * | dst | ||
| ) | 
Convert to a compressed, serialised, network byte order byte stream.
WHITEBOARD_POSTER_STRING_CONVERSION.
Definition at line 276 of file wb_point2d.c.
References htons.
| const char * wb_point2d_to_string | ( | const struct wb_point2d * | self, | 
| char * | toString, | ||
| size_t | bufferSize | ||
| ) | 
Convert to a string.
Definition at line 149 of file wb_point2d.c.
Referenced by guWhiteboard::Point2D::to_string(), and wb_particle_position_to_string().