Tue, 08 Jul 2003 23:48:10 +0000
[gaim-migrate @ 6515]
These be away messages. They don't do nothing that the old away messages
ain't done, but they save themselves in ~/.gaim/status.xml instead of
~/.gaimrc. Astute CVS watchers will have noticed a bit of a trend like that.
So in the future status.xml will have all sorts of cool stuff (I have big plans) but it's kinda boring for now. Also, I should've done this weeks ago. I
should stop being busy.
I'd like to give a shoutout to my boy Rob Flynn, keepin' it real in Atlanta.
You know you my boy, Dawg.
| 5005 | 1 | /* |
| 2 | * untar.h | |
| 3 | * | |
| 4 | * Author: Herman Bloggs <hermanator12002@yahoo.com> | |
| 5 | * Date: April, 2003 | |
| 6 | * Description: untar.c header | |
| 7 | */ | |
| 8 | #ifndef _UNTAR_H_ | |
| 9 | #define _UNTAR_H_ | |
| 10 | ||
| 11 | typedef enum _untar_opt { | |
| 12 | UNTAR_LISTING = (1 << 0), | |
| 13 | UNTAR_QUIET = (1 << 1), | |
| 14 | UNTAR_VERBOSE = (1 << 2), | |
| 15 | UNTAR_FORCE = (1 << 3), | |
| 16 | UNTAR_ABSPATH = (1 << 4), | |
| 17 | UNTAR_CONVERT = (1 << 5) | |
| 18 | } untar_opt; | |
| 19 | ||
| 20 | int untar(const char *filename, const char *destdir, untar_opt options); | |
| 21 | ||
| 22 | #endif |