[sldev] Can I include source licensed under the 3-clause BSD?

Nicholaz Beresford nicholaz at blueflash.cc
Mon Jul 23 03:51:48 PDT 2007


It's Linden-deprecated, but I'd simply use sscanf
before I'd jump through the licensing hoops (but of
course I'm pretty old-school :-))

S32 d,m,y,n;
n= sscanf(buf, "%d/%d/%d", &m, &d, &y);
if (n!=3) return FALSE;
struct tm birth = { 0, 0, 0, d, m-1, y-1900, 0, 0, 0 };




Nick



Dale Glass wrote:
> On Mon, Jul 23, 2007 at 12:28:12PM +0200, Nicholaz Beresford wrote:
>> What kind of date string do you get there?  (Do the
>> Lindens really just send a string for the avatar?)
> Yep, the date as it appears in the profile.
> 
> I suppose I could roll my own as well, but why reinvent the wheel if
> there's perfectly good code out there?


More information about the SLDev mailing list