/in/foo.c: In function 'FindiMinPos':
/in/foo.c:50:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(i=0; i<n; i++)
^~~
/in/foo.c:56:3: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(; i<n;i++)
^~~
/in/foo.c:56:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
/in/foo.c:59:4: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
return imin;
^~~~~~
/in/foo.c:59:11: warning: 'imin' may be used uninitialized in this function [-Wmaybe-uninitialized]
return imin;
^~~~