Skip to content
Snippets Groups Projects
instance_splitname.c 1011 B
Newer Older
Eric Vidal's avatar
Eric Vidal committed
/*
 * instance_splitname.c
 *
Eric Vidal's avatar
Eric Vidal committed
 * Copyright (c) 2018-2024 Eric Vidal <eric@obarun.org>
Eric Vidal's avatar
Eric Vidal committed
 *
 * All rights reserved.
 *
 * This file is part of Obarun. It is subject to the license terms in
 * the LICENSE file found in the top-level directory of this
 * distribution.
 * This file may not be copied, modified, propagated, or distributed
 * except according to the terms contained in the LICENSE file./
 */

#include <string.h>

#include <oblibs/log.h>

#include <skalibs/stralloc.h>

#include <66/utils.h>

int instance_splitname(stralloc *sa,char const *name,int len,int what)
{
    log_flow() ;

    char const *copy ;
    size_t tlen = len + 1 ;

    char template[tlen + 1] ;
    memcpy(template,name,tlen) ;
    template[tlen] = 0 ;

    copy = name + tlen ;

    sa->len = 0 ;
    if (!what)
    {
        if (!stralloc_cats(sa,template) ||
        !stralloc_0(sa)) return 0 ;
    }
    else
    {
        if (!stralloc_catb(sa,copy,strlen(copy)) ||
        !stralloc_0(sa)) return 0 ;
    }
    return 1 ;
}