version.c 321 B

123456789101112131415161718192021
  1. /*
  2. * (c) 2017 Marcos Del Sol Vives
  3. *
  4. * SPDX-License-Identifier: MIT
  5. */
  6. #include <version.h>
  7. #include <stdio.h>
  8. const char * nfc3d_version_fork() {
  9. // TODO: maybe this should go in another file?
  10. return "socram";
  11. }
  12. uint32_t nfc3d_version_commit() {
  13. return 0;
  14. }
  15. uint32_t nfc3d_version_build() {
  16. return 0;
  17. }