@@ -18,8 +18,8 @@ aid the use of the library.
1818
1919The memory library is intended to substitute calls to the memory
2020allocation/deallocation functions like
21- [ ` malloc() ` ] ( http ://en.wikipedia.org/wiki/C_dynamic_memory_allocation) from
22- [ ` <stdlib.h> ` ] ( http ://en.wikipedia.org/wiki/C_standard_library) . Its main
21+ [ ` malloc() ` ] ( https ://en.wikipedia.org/wiki/C_dynamic_memory_allocation) from
22+ [ ` <stdlib.h> ` ] ( https ://en.wikipedia.org/wiki/C_standard_library) . Its main
2323purpose is to enhance their safety by making them:
2424
2525- never return a null pointer, which eliminates handling exceptional cases
@@ -82,7 +82,7 @@ same interfaces and only their implementations differ. During debugging code,
8282linking the debugging version is helpful when you want to figure out if there
8383are invalid memory usages like a free-free problem (trying to release an
8484already-deallocated area) and a memory leakage. This does not cover the whole
85- range of such problems as [ valgrind] ( http ://valgrind.org/) does, but if there
85+ range of such problems as [ valgrind] ( https ://valgrind.org/) does, but if there
8686are no other tools available for catching memory problems, the debugging
8787version of this library would be useful. Unfortunately, the debugging version
8888is not able to keep track of memory usage unless allocated via this library;
@@ -480,7 +480,7 @@ the total size.
480480
481481## 4. Contact me
482482
483- Visit [ ` code.woong.org ` ] ( http ://code.woong.org) to get the latest version of
483+ Visit [ ` code.woong.org ` ] ( https ://code.woong.org) to get the latest version of
484484this library. Any comments about the library are welcomed. If you have a
485485proposal or question on the library just email me, and I will reply as soon as
486486possible.
0 commit comments