You should note that OpenGL requires images loaded via the data pointer to glTexImage2D to be in a different format to most disk image formats. Uncompressed formats like TGA, PPM, PGM and PBM can be fairly simple to write loaders for, but you’ll still need to parse and remove the header.
Since GLFW is permissively licensed, a good approach might be to take a look at the 2.0 image loader code and modify this (keeping the license header etc.). However a simple loader library like SOIL2 will give you wider format support plus support for compressed DXT formats and mipmap generation.