summaryrefslogtreecommitdiff
path: root/bittorrent/mbtstr/src/pushcv.c
blob: 7f21562e28a7926913f88f0bcc764253a1dd48f4 (plain)
1
2
3
4
5
6
7
8
9
10
#include "mbtstr/str.h"
#include "mbtstr/view.h"

bool mbt_str_pushcv(struct mbt_str *str, struct mbt_cview view)
{
    for (size_t i = 0; i < view.size; i++)
        if (!mbt_str_pushc(str, view.data[i]))
            return false;
    return true;
}