This question is sort-of a duplicate of What is a performant string hashing function that results in a 32 bit integer with low collision rates?. If speed is your concern, start with the references there. (MurmurHash seems to be the consensus choice.)
If performance is not a big concern, just grab a SHA-1 library and use the first 16 of the 20 bytes of output. This is trivial to code using the library, and as resistant as you could want against collisions.
[edit]
As John Flatness points out in a comment, MD5 would also fit the bill. My suspicion is that it will be easier to find a SHA-1 libraries these days than MD5 (since MD5 was cracked several years ago), but whichever you have handy would be fine since this is not a cryptographic application.