| 195 | } |
| 196 | |
| 197 | int get_version_ml_module (char *version, int *num_chars, int max_chars) |
| 198 | { |
| 199 | strncpy (version, BRAINFLOW_VERSION_STRING, max_chars); |
| 200 | *num_chars = std::min<int> (max_chars, (int)strlen (BRAINFLOW_VERSION_STRING)); |
| 201 | return (int)BrainFlowExitCodes::STATUS_OK; |
| 202 | } |
no outgoing calls
no test coverage detected