Search Results

5
votes
2answers
328 views

What is the lifetime and validity of C++ iterators ?

I'm planning to implement a list of Things in C++ where elements might be removed out of order. I don't expect that i'll need any kind of random access (i just need to sweep the list periodically), …
2
votes
5answers
147 views

bring malloc() back to its initial state

Do you know if there is a way to bring back malloc in its initial state, as if the program was just starting ? reason : I am developing an embedded application with the nintendods devkitpro …
3
votes

Alpha blending sprites in Nintendo DS Homebrew

As a generic reference, i once wrotea small blog entry about that issue. Basically, you first have to define w …