repositories
/
TD_C.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bd8b2f2
)
exo1.c: fix a typo
author
Jérôme Benoit
<jerome.benoit@piment-noir.org>
Wed, 15 Feb 2017 12:26:17 +0000
(13:26 +0100)
committer
Jérôme Benoit
<jerome.benoit@piment-noir.org>
Wed, 15 Feb 2017 12:26:17 +0000
(13:26 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
exo1/exo1.c
patch
|
blob
|
blame
|
history
diff --git
a/exo1/exo1.c
b/exo1/exo1.c
index b4bf35d1dc84937bd00dc20f21d7b73029b4873f..34251200207f6ef3afc6bc66f9f8e307ca55918f 100644
(file)
--- a/
exo1/exo1.c
+++ b/
exo1/exo1.c
@@
-7,7
+7,7
@@
void promptValue(int* addr) {
scanf("%d", addr);
}
-// The efficienc
e
of this swap alternative is debatable ..
+// The efficienc
y
of this swap alternative is debatable ..
void xorSwap (int *v1, int *v2) {
if (v1 != v2) {
*v1 ^= *v2;