Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8249069
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T23:24:38+00:00 2026-06-07T23:24:38+00:00

I have a C function that requires to be called with a const GLchar

  • 0

I have a C function that requires to be called with a const GLchar ** parameter.

I am not a C programmer by trade (Perl is my game) but I am trying to call a C library from Perl. I have all the other required functions wrapped (SWIG). This is the last troublesome one.
Please don’t shoot me down for my (lack of) C skills. I am trying and Google only helps if you know exactly what to type!

I understand that const GLchar ** means that it wants a pointer to an array of strings (GLchar arrays).
With no way of creating that directly I have to create a GLchar array first:

    GLbyte *GLbyte_array(int size) {
      return (GLbyte *) malloc(sizeof(GLbyte)*size);
    }

So I use that in Perl via:

    my $var=GLbyte_array(20);

and then populate that one char at a time from Perl by calling:

   void GLbyte_put(GLbyte *a, int i, char val) {
     a[i] = val;
   }

Again, Perl:

    my $str="hello";
    for(my $i; $i<length($str); $i++)
    { GLbyte_put($var, $i); }

All good. (well, perhaps not good – but it works).
I have a C char array containing the word “hello”.

My solution then was to attempt to build an array of these guys and drop the array I created above into it. Then return my required pointer to it:

    const GLchar **get_GLbyte_array_ptr(GLbyte *a) {
     char *arr[1];
     arr[0]= a;
     return (const GLchar**)arr[0];
   }

Perl:

    my $ptr=get_GLbyte_array_ptr($var);

This is clearly a load of tosh. It compiles and then segfaults.

Can you recommend alternate code/fixes for the problem?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T23:24:39+00:00Added an answer on June 7, 2026 at 11:24 pm

    rather than

    return (const GLchar**)arr[0];
    

    could you try this:

    return (const GLchar**)&arr;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a PHP function that requires can take 3 parameteres... I want to
$(.container).hover( function(){ $(.child-1).hide(0); $(.child-2).show(0); },function(){ $(.child-1).show(0); $(.child-2).hide(0); }); A project I have requires that
If I have a function called from a few places, and it requires some
I want to have a function in a different module, that when called, has
I have a function language($tag) that requires a file lang.php which contains an array
In C++ I have some code that requires a const char * to be
I have a sqlite database that I did not create myself but from a
Inside my Controller i have function that runs after user clicks on item, which
So I have function that formats a date to coerce to given enum DateType{CURRENT,
In my Java code I have function that gets file from the client in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.