The assignment is due at the beginning of class on Monday, November 1, 5 pm. Please follow the instructions in submitting your assignment.
schedule(foo, v0, t0); some other code schedule(bar, v1, t1);where t0 and t1 are time_t values indicating an absolute time and foo and bar are functions that get called with arguments v0 and v1, respectively when their time comes.
Hints: xgettext extracts the messages into a message file, but does not create the message object, i.e., the database of messages. You will need to use the msgfmt command for this. The man pages for msgfmt point you toward putting the database in /usr/lib/locale/..., but you will need to put it in your own directory tree. The manpages for msgfmt and gettext(1) describe the environment variables to override these default directories when you are using gettext from the commandline. The manpages for gettext(3c) (the function) provide details on other functions which can be used from your program to get the same effect as setting the environment variables from the command line.