* Whether or not the string could be a bson hex string. */
| 122 | * Whether or not the string could be a bson hex string. |
| 123 | */ |
| 124 | bool |
| 125 | IsBsonHexadecimalString(const char *string) |
| 126 | { |
| 127 | return string[0] == BsonHexPrefix[0]; |
| 128 | } |
| 129 | |
| 130 | |
| 131 | /* |
no outgoing calls
no test coverage detected