| 1716 | } |
| 1717 | |
| 1718 | int get_version_data_handler (char *version, int *num_chars, int max_chars) |
| 1719 | { |
| 1720 | strncpy (version, BRAINFLOW_VERSION_STRING, max_chars); |
| 1721 | *num_chars = std::min<int> (max_chars, (int)strlen (BRAINFLOW_VERSION_STRING)); |
| 1722 | return (int)BrainFlowExitCodes::STATUS_OK; |
| 1723 | } |
no outgoing calls
no test coverage detected