X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=exo1%2Fexo1.c;h=34251200207f6ef3afc6bc66f9f8e307ca55918f;hb=61ce0eeb7269e378aef982680f1f2450db257abb;hp=b4bf35d1dc84937bd00dc20f21d7b73029b4873f;hpb=9bd6197002ea6286b8542d185dda98dc3a330cbe;p=TD_C.git diff --git a/exo1/exo1.c b/exo1/exo1.c index b4bf35d..3425120 100644 --- a/exo1/exo1.c +++ b/exo1/exo1.c @@ -7,7 +7,7 @@ void promptValue(int* addr) { scanf("%d", addr); } -// The efficience of this swap alternative is debatable .. +// The efficiency of this swap alternative is debatable .. void xorSwap (int *v1, int *v2) { if (v1 != v2) { *v1 ^= *v2;