C doesn't have direct support for OO via classes, but you can easily emulate it.
The basics of how to do this is that you can make a struct which holds your data members and an associated list of functions which takes a pointer to that struct as it's first parameter.
More information