Coder Social home page Coder Social logo

extern-c's Introduction

extern "C"

This project demonstrates how to mix C with other programming languages. It aims to create a Rosetta Stone of the procedure shown in the following pseudocode:

// use programming language x

func main() {
    caller_language := "x-language";
    caller_stack := generate_random_number();
    println("[%04d] start of x-language main procedure", caller_stack);

    y_language_procedure(caller_language, caller_stack);

    println("[{%04d}] end of x-language main procedure", caller_stack);
}
! use programming language y

FUNCTION y_language_procedure(caller_language, caller_stack)
    callee_stack = generate_random_number()
    PRINT "[%04d] start of a y-language procedure, called by [%04d], %s", callee_stack, caller_language, caller_stack

    PRINT "[%04d] start of a y-language procedure", callee_stack
END FUNCTION y_language_procedure

As shown above, the main function written in x language calls a function written in y language. The output of the whole procedure looks like this:

[4199] start of x-language main procedure
[8549] start of a y-language procedure, called by x-language [4199]
[8549] end of a y-language procedure
[4199] end of x-language main procedure

The cross-language API, as mentioned above, needs to receive a integer and a string, in order to show their basic ability of mix programming.

All the callee procedures will be archived into static libraries using their own toolchain. For example, to build a C static library, instead of using cargo, we use gcc.

Currently implemented:

Caller Callee
C golang
C rust
golang C
rust C

Will implement:

  • C++

Usage

Fisrtly, change directory to one of the x-call-y. If you want to build all x-call-ys, just stay in the root directory.

To build the project:

make

To clean the build targets:

make clean

extern-c's People

Contributors

ralxyz avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.