! * \brief isBase64() */
| 268 | * \brief isBase64() |
| 269 | */ |
| 270 | static l_int32 |
| 271 | isBase64(char c) |
| 272 | { |
| 273 | return (isalnum(((int)c)) || ((c) == '+') || ((c) == '/')) ? 1 : 0; |
| 274 | } |
| 275 | |
| 276 | /*! |
| 277 | * \brief genReverseTab64() |
no outgoing calls
no test coverage detected