Listing 4 Accessing the message catalog symbolically

#include "example.h"
...
message_file = catopen("example.cat", 0);
printf("%s", catgets(message_file, SOME_STRINGS,
    FIRST_STRING, "I can't find it");
catclose(message_file);

/* End of File */