Project

General

Profile

Actions

Bug #4170

open

Int128-512: Замечания к коду

Added by Alexander Kamkin almost 11 years ago. Updated almost 11 years ago.

Status:
Resolved
Priority:
Normal
Start date:
05/14/2013
Due date:
% Done:

0%

Estimated time:
Detected in build:
svn
Platform:
Published in build:

Description

Для этого есть функция strlen:

    for(i = 0; i < 128; i++)
    {
        if(value.value.str[i] == 0)
        { break; }
    }

Для этого есть функция memset:

    for(j = i; j < 128; j++)
    {
        value.value.str[j] = 0;
    }
Actions

Also available in: Atom PDF