alrevuelta / cONNXr

Pure C ONNX runtime with zero dependancies for embedded devices
MIT License
189 stars 31 forks source link

Use snprintf() instead of strcat() to concat strings #105

Open szsam opened 1 year ago

szsam commented 1 year ago

snprintf() is both safer and more efficient than strcat() when concatenating many strings into one.