⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tdsstring.c

📁 在Linux/Unix下面访问WINDOWS SQLSERVER 的ODBC驱动程序
💻 C
字号:
/* FreeTDS - Library of routines accessing Sybase and Microsoft databases * Copyright (C) 2004-2005  Frediano Ziglio * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */#if HAVE_CONFIG_H#include <config.h>#endif /* HAVE_CONFIG_H */#include <stdarg.h>#include <stdio.h>#include <assert.h>#if HAVE_STDLIB_H#include <stdlib.h>#endif /* HAVE_STDLIB_H */#if HAVE_STRING_H#include <string.h>#endif /* HAVE_STRING_H */#ifdef DMALLOC#include <dmalloc.h>#endif#include "tds.h"#include "tdsstring.h"TDS_RCSID(var, "$Id: tdsstring.c,v 1.19 2007/07/01 10:10:52 freddy77 Exp $");/** * \ingroup libtds * \defgroup dstring Dynamic string functions * Handle dynamic string. In this string are always valid  * (you don't have NULL pointer, only empty string) *//* This is in a separate module because we use the pointer to discriminate allocated and not allocated */const char tds_str_empty[1] = "";/** * \addtogroup dstring * @{  *//** clear all string filling with zeroes (mainly for security reason) */voidtds_dstr_zero(DSTR * s){	memset(s->dstr_s, 0, s->dstr_size);}/** free string */voidtds_dstr_free(DSTR * s){	if (s->dstr_s != tds_str_empty)		free(s->dstr_s);	s->dstr_size = 0;	s->dstr_s = (char*) tds_str_empty;}/** * Set string to a given buffer of characters * @param s      dynamic string * @param src    source buffer * @param length length of source buffer * @return string copied or NULL on memory error */DSTR*tds_dstr_copyn(DSTR * s, const char *src, unsigned int length){	if (s->dstr_s != tds_str_empty)		free(s->dstr_s);	if (!length) {		s->dstr_s = (char *) tds_str_empty;		s->dstr_size = 0;	} else {		s->dstr_s = (char *) malloc(length + 1);		if (!s->dstr_s) {			s->dstr_s = (char *) tds_str_empty;			s->dstr_size = 0;			return NULL;		}		s->dstr_size = length;		memcpy(s->dstr_s, src, length);		s->dstr_s[length] = 0;	}	return s;}/** * set a string from another buffer.  * The string will use the supplied buffer (it not copy the string), * so it should be a pointer returned by malloc. * @param s      dynamic string * @param src    source buffer * @return string copied or NULL on memory error */DSTR*tds_dstr_set(DSTR * s, char *src){	size_t len = strlen(src);	if (s->dstr_s != tds_str_empty)		free(s->dstr_s);	s->dstr_s = len ? src : (char *) tds_str_empty;	if (!len)		free(src);	s->dstr_size = len;	return s;}/** * copy a string from another * @param s      dynamic string * @param src    source buffer * @return string copied or NULL on memory error */DSTR*tds_dstr_copy(DSTR * s, const char *src){	return tds_dstr_copyn(s, src, strlen(src));}DSTR*tds_dstr_dup(DSTR * s, const DSTR * src){	return tds_dstr_copyn(s, src->dstr_s, src->dstr_size);}/** * limit length of string, MUST be <= current length * @param s        dynamic string * @param length   new length  */DSTR*tds_dstr_setlen(DSTR *s, unsigned int length){#if ENABLE_EXTRA_CHECKS	assert(s->dstr_size >= length);#endif	/* test required for empty strings */	if (s->dstr_size >= length) {		s->dstr_size = length;		s->dstr_s[length] = 0;	}	return s;}/** * allocate space for length char * @param s        dynamic string * @param length   new length  * @return string allocated or NULL on memory error */DSTR*tds_dstr_alloc(DSTR *s, unsigned int length){	char *p;	if (s->dstr_s != tds_str_empty)		free(s->dstr_s);	p = (char *) malloc(length + 1);	if (!p) {		s->dstr_s = (char *) tds_str_empty;		s->dstr_size = 0;		return NULL;	}	s->dstr_s = p;	s->dstr_s[0] = 0;	s->dstr_size = length;	return s;}#if ENABLE_EXTRA_CHECKSvoidtds_dstr_init(DSTR * s){	s->dstr_s = (char *) tds_str_empty;	s->dstr_size = 0;}inttds_dstr_isempty(DSTR * s){	return s->dstr_size == 0;}char *tds_dstr_buf(DSTR * s){	return s->dstr_s;}size_ttds_dstr_len(DSTR * s){	return s->dstr_size;}#endif/** @} */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -