Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2015-06-30Cleanup: use BLI_str prefix for BLI_replacestrNCampbell Barton
2015-06-30Cleanup: move BLI_timestr to BLI_timecodeCampbell Barton
2015-06-27Cleanup: all params of BLI_str partition funcs can be const...Bastien Montagne
2015-06-27Extend `BLI_str_partition_ex`: add possibility to define a right limit to the...Bastien Montagne
2015-04-21BLI_string: add BLI_snprintf_rlenCampbell Barton
2015-01-10Fix building with very strict flags, use size_t rather than int for string le...Bastien Montagne
2015-01-09BLI_string: BLI_str_ends_with -> BLI_str_endswithCampbell Barton
2015-01-09Gooseberry animation request: Paste flipped pose in actionAntony Riakiotakis
2015-01-06cleanup: warningsCampbell Barton
2015-01-03Add some BLI helpers needed by asset branch.Bastien Montagne
2014-07-17Add thousands separators to scene stats (D646)Campbell Barton
2014-07-08BLI_string, dont pass unicode to ascii BLI_str_partition functionsCampbell Barton
2014-07-04Add (r)partition funcs to BLI_string, to get left-most/right-most first occur...Bastien Montagne
2014-06-17BLI: Add two helpers to search a given string in an array of strings.Bastien Montagne
2014-05-20Fix T40224: Crash moving objects to another layerCampbell Barton
2013-09-01Move GCC attributes into a centraized definesSergey Sharybin
2013-08-06use gcc malloc attribute for low level allocation functions, prevents gcc fro...Campbell Barton
2013-07-27code cleanup: remove redundant NULL checks and avoid writing to the source st...Campbell Barton
2013-07-15debug option (off by default), for BLI_string to help find incorrect sizes be...Campbell Barton
2013-06-16add BLI_strcpy_rlen, replace strcat, which was used in misleading way.Campbell Barton
2013-03-29misc minor edits.Campbell Barton
2013-03-14add BLI_strncpy_rlen(), a clone of BLI_strncpy() that returns the number of b...Campbell Barton
2013-03-04fix [#34490] Copy and paste floating point number fields losses precisionCampbell Barton
2012-10-31add assert if zero is passed to string copy functions, would copy into first ...Campbell Barton
2012-10-27change BLI_strlen_range_utf8 to the more conventional BLI_strnlen_utf8Campbell Barton
2012-10-10use __restrict for string functions args so the compiler can assume they dont...Campbell Barton
2012-09-16use the format attribute in more places, disable X11 options when building wi...Campbell Barton
2012-08-26Some FFmpeg changesSergey Sharybin
2012-07-10rename BLI_getQuotedStr --> BLI_str_quoted_substrN to make it more clear its ...Campbell Barton
2012-07-08use gcc attrubutes to warn on unused return values and arguments which should...Campbell Barton
2012-05-13code cleanup: header cleanup and remove some duplicate defines.Campbell Barton
2012-03-02style cleanupCampbell Barton
2012-03-01Spelling CleanupCampbell Barton
2012-02-17unify include guard defines, __$FILENAME__Campbell Barton
2011-10-29replace BLI_strtok_r from r41337 with lighter method that doesnt alloc for te...Campbell Barton
2011-10-28BLI_string: Adding the BLI_strtok_r function, which mimics stdlib strtok_r (u...Bastien Montagne
2011-10-23remove $Id: tags after discussion on the mailign list: http://markmail.org/me...Campbell Barton
2011-10-20- add BLI_string_utf8.h for unicode functions.Campbell Barton
2011-10-16utf8 editing for UI text input, this means backspace, delete, arrow keys prop...Campbell Barton
2011-09-15fix [#28658] python can assign non utf8 and crash because of string lenth lim...Campbell Barton
2011-09-15move utf8 string.c functions into their own file, also add python tip for pri...Campbell Barton
2011-08-23BLI_strescape for a basic, python like string escaping, currently only use fo...Campbell Barton
2011-05-27remove BLI_streq() since it was hardly used, also replace string search with ...Campbell Barton
2011-05-26Fix #27445: various operators missing with some non-english system languages.Brecht Van Lommel
2011-03-25use size_t rather then int for passing lengths to string functions since this...Campbell Barton
2011-02-27pedantic warning cleanup, also remove texspace_edit() since its been added us...Campbell Barton
2011-02-18doxygen: add blenlib under core as module.Nathan Letwory
2011-02-12fix for uninitialized value in BLI_path_cwd() if PWD wasn't defined and the C...Campbell Barton
2010-12-04Give functions that use printf style formatting GCC format attributes so if i...Campbell Barton
2010-11-29Description of BLI_strncpy() and BLI_strdupcat() were mixed up.Ton Roosendaal