You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our static file server (part of the blog interface) currently uses a series of strcasecmp calls to determine what the file extension is. It works but it's obviously not that great.
The ideal data structure is probably a hash table. This is one of those cases where C is painful.
The text was updated successfully, but these errors were encountered:
Our static file server (part of the blog interface) currently uses a series of
strcasecmp
calls to determine what the file extension is. It works but it's obviously not that great.The ideal data structure is probably a hash table. This is one of those cases where C is painful.
The text was updated successfully, but these errors were encountered: