view libfaim/meta.c @ 1771:213607e89598

[gaim-migrate @ 1781] plug mem leak. don't show evil level if it decreased. mid's utf8 patch for jabber. my girlfriend got an accounting calculator today, you know, with the paper and the printing and things. it's kinda loud. she's really happy about having it. she had bought a different one yesterday but it didn't work so we returned it today. we also went to Albertson's and bought groceries. we bought 72 cans of soda for $15. That's 20 cents per soda. Not bad. we also bought a cow; i'm going to cook it tonight. ben&jerry's ice cream is good. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Mon, 30 Apr 2001 01:25:30 +0000
parents 3fe5799b7823
children
line wrap: on
line source

/*
 * Administrative things for libfaim.
 *
 *  
 */

#include <aim.h>

faim_export char *aim_getbuilddate(void)
{
  return AIM_BUILDDATE;
}

faim_export char *aim_getbuildtime(void)
{
  return AIM_BUILDTIME;
}

faim_export int aim_getbuildstring(char *buf, int buflen)
{

  snprintf(buf, buflen, "%d.%d.%d-%s%s", 
	   FAIM_VERSION_MAJOR,
	   FAIM_VERSION_MINOR,
	   FAIM_VERSION_MINORMINOR,
	   aim_getbuilddate(),
	   aim_getbuildtime());

  return 0;
}

faim_internal void faimdprintf(struct aim_session_t *sess, int dlevel, const char *format, ...)
{
  if (!sess) {
    fprintf(stderr, "faimdprintf: no session! boo! (%d, %s)\n", dlevel, format);
    return;
  }

  if ((dlevel <= sess->debug) && sess->debugcb) {
    va_list ap;

    va_start(ap, format);
    sess->debugcb(sess, dlevel, format, ap);
    va_end(ap);
  }

  return;
}