IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 4, 2011, 12:57:08 PM (15 years ago)
Author:
eugene
Message:

consolidate multiple FITTED stats; updates to psImageBackground based on results from MWV; added memory dump API

Location:
trunk/psLib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib

    • Property svn:ignore
      •  

        old new  
        3434*.bbg
        3535*.da
         36a.out.dSYM
  • trunk/psLib/src/sys/psString.c

    r29932 r31152  
    456456
    457457
     458psString psStringFileBasename (const char *fullname) {
     459 
     460    char *file;
     461
     462    const char *ptr = strrchr (fullname, '/');
     463    if (ptr) {
     464        file = psStringCopy(ptr + 1);
     465    } else {
     466        file = psStringCopy(fullname);
     467    }
     468  return (file);
     469}
     470
    458471psString psStringStripCVS(const char *string, const char *tagName)
    459472{
Note: See TracChangeset for help on using the changeset viewer.