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
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/blenlib/intern')
-rw-r--r--source/blender/blenlib/intern/math_rotation.c5
-rw-r--r--source/blender/blenlib/intern/string_utf8.c10
2 files changed, 7 insertions, 8 deletions
diff --git a/source/blender/blenlib/intern/math_rotation.c b/source/blender/blenlib/intern/math_rotation.c
index 53c7d5e6576..a348edaece8 100644
--- a/source/blender/blenlib/intern/math_rotation.c
+++ b/source/blender/blenlib/intern/math_rotation.c
@@ -15,10 +15,9 @@
*
* The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
* All rights reserved.
-
- * The Original Code is: some of this file.
*
- * */
+ * The Original Code is: some of this file.
+ */
/** \file
* \ingroup bli
diff --git a/source/blender/blenlib/intern/string_utf8.c b/source/blender/blenlib/intern/string_utf8.c
index d4b4bba810c..12ada9b6fd9 100644
--- a/source/blender/blenlib/intern/string_utf8.c
+++ b/source/blender/blenlib/intern/string_utf8.c
@@ -519,7 +519,7 @@ int BLI_str_utf8_size_safe(const char *p)
* instead.
*
* Return value: the resulting character
- **/
+ */
uint BLI_str_utf8_as_unicode(const char *p)
{
int i, len;
@@ -625,7 +625,7 @@ uint BLI_str_utf8_as_unicode_step(const char *__restrict p, size_t *__restrict i
* Converts a single character to UTF-8.
*
* \return number of bytes written
- **/
+ */
size_t BLI_str_utf8_from_unicode(uint c, char *outbuf)
{
/* If this gets modified, also update the copy in g_string_insert_unichar() */
@@ -684,7 +684,7 @@ size_t BLI_str_utf8_from_unicode(uint c, char *outbuf)
* it starts with an appropriate byte.
*
* Return value: a pointer to the found character or %NULL.
- **/
+ */
char *BLI_str_find_prev_char_utf8(const char *str, const char *p)
{
for (--p; p >= str; --p) {
@@ -709,7 +709,7 @@ char *BLI_str_find_prev_char_utf8(const char *str, const char *p)
* it starts with an appropriate byte.
*
* Return value: a pointer to the found character or %NULL
- **/
+ */
char *BLI_str_find_next_char_utf8(const char *p, const char *end)
{
if (*p) {
@@ -740,7 +740,7 @@ char *BLI_str_find_next_char_utf8(const char *p, const char *end)
* character of the string, you must use g_utf8_find_prev_char() instead.
*
* Return value: a pointer to the found character.
- **/
+ */
char *BLI_str_prev_char_utf8(const char *p)
{
while (1) {