가변길이 매개변수 넘기기

girneter의 이미지

void Print(const char* fmt, ...)

이라는 출력 함수가 있는데

이 함수를 바로 부르지 않고
같은 형식의 다른 함수로 한번 싸서 부르고 싶습니다

타입은
wrapPrint(const char* fmt, ...)
이구요.
예를 들어
wrapPrint("num %d\n", 3);
하면
Print 함수를 불러서 출력하게 하고 싶은거죠

물론
#define wrapPrint Print
라고 하면 매우 간단하지만 그건 곤란하구요.
wrapPrint 함수 내에서 Print 함수를 불러야 합니다
어떻게 해야하죠?

찾아보니까

void wrapPrint(const char* fmt, ...)
{
    char p[128];
    va_list, va_start
    vsnprintf(p, 128, fmt, ap);
    va_end
    Print(p)
}

이렇게 하면 되는건 알겠는데
이렇게 스택이나 힙에 메모리할당하고 거기다 옮겨적은담에
Print 를 호출하는 방법밖에 없는겁니까?
별도 공간 사용하지 않고 바로
Print 함수에 매개변수들을 넘기는 방법은 없는건가요?
Fe.head의 이미지

vprintf 가 있군요.

man vprintf

#include <stdarg.h>

int vprintf(const char *format, va_list ap);
int vfprintf(FILE *stream, const char *format, va_list ap);
int vsprintf(char *str, const char *format, va_list ap);
int vsnprintf(char *str, size_t size, const char *format, va_list ap);

고작 블로킹 하나, 고작 25점 중에 1점, 고작 부활동
"만약 그 순간이 온다면 그때가 네가 배구에 빠지는 순간이야"

cinsk의 이미지

가변 인자를 받는 함수 Foo가 있다고 치면, 잘 만든 라이브러리인 경우 vFoo나 VaFoo의 형태로 va_list type을 받는 함수를 함께 제공합니다.

예를 들면, printf(3)에 해당하는 vprintf(3)가 있고, XtAppInitialize(3Xt)에는 XtVaAppInitialize(3Xt)가 있습니다.

따라서 Print()라는 함수를 제공하는 라이브러리가 괜찮다면 VaPrint나 vPrint 등의 이름으로 제공하는 함수가 있을 겁니다. 없다면, 보여주신 코드처럼 s*printf(3)를 써서 문자열을 임시로 만들고 쓰는 방법밖에 없습니다.

girneter의 이미지

fehead wrote:

vprintf 가 있군요.

네 저도 그거 써볼라 하니
그 함수는 그냥 지가 출력해 버리던데요.

cinsk 님 말씀대로 버퍼 잡아서 해야겠슴다
답변 감사드립니다

개념없는 초딩들은 좋은 말로 할때 DC나 웃대가서 놀아라. 응?

jj의 이미지

cinsk wrote:
가변 인자를 받는 함수 Foo가 있다고 치면, 잘 만든 라이브러리인 경우 vFoo나 VaFoo의 형태로 va_list type을 받는 함수를 함께 제공합니다.

예를 들면, printf(3)에 해당하는 vprintf(3)가 있고, XtAppInitialize(3Xt)에는 XtVaAppInitialize(3Xt)가 있습니다.

XtAppInitialize는 XtVaApp... 가 가변 인자를 받습니다. XtApp... 는 ArgList라는 별도의 타입을 사용하구요. 오래 되셔서 잠깐 헤깔리신듯... 전 어제봐서 기억하고 있습니다. ^^

--
Life is short. damn short...

jemiro의 이미지

gcc 는 아래와 같이 preprocessor에서 가변인수 처리가 되더군요.

#define prterr(format, args...) (void) fprintf(stderr, format, ##args)
#define prtmsg(x, format, args...) do {                                     \
    if (x) prterr("Error: %-11s (%04d) %-11s [",__FILE__,__LINE__,__func__), \
        prterr(format, ##args), prterr("]\n"); \
    } while (0)
lifthrasiir의 이미지

jemiro wrote:
gcc 는 아래와 같이 preprocessor에서 가변인수 처리가 되더군요.

#define prterr(format, args...) (void) fprintf(stderr, format, ##args)
#define prtmsg(x, format, args...) do {                                     \
    if (x) prterr("Error: %-11s (%04d) %-11s [",__FILE__,__LINE__,__func__), \
        prterr(format, ##args), prterr("]\n"); \
    } while (0)

gcc extension 맞습니다. C99에서는 다음과 같은 코드가 표준입니다.

#define prterr(format, ...) (void) fprintf(stderr, format, ##__VA_ARGS__)
#define prtmsg(x, format, ...) do {                                     \
    if (x) prterr("Error: %-11s (%04d) %-11s [",__FILE__,__LINE__,__func__), \
        prterr(format, ##__VA_ARGS__), prterr("]\n"); \
    } while (0)

- 토끼군

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.